Skip to content

Commit 4fd6c27

Browse files
committed
Rename the crate name to ac_library
1 parent 44b3805 commit 4fd6c27

14 files changed

+36
-33
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ keywords = ["competitive"]
1010
categories = ["algorithms", "data-structures"]
1111
publish = false
1212

13+
[lib]
14+
name = "ac_library"
15+
1316
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1417

1518
[dependencies]

examples/library-checker-convolution-mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[macro_use]
22
extern crate proconio as _;
33

4-
use ac_library_rs::{convolution, modint::ModInt998244353 as Mint};
4+
use ac_library::{convolution, modint::ModInt998244353 as Mint};
55
use std::fmt;
66

77
fn main() {

examples/library-checker-static-range-sum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ extern crate proconio as _;
33
#[macro_use]
44
extern crate proconio_derive as _;
55

6-
use ac_library_rs::fenwicktree::FenwickTree;
6+
use ac_library::fenwicktree::FenwickTree;
77

88
#[allow(clippy::needless_collect)]
99
#[fastout]

examples/library-checker-sum-of-floor-of-linear.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ extern crate proconio as _;
33
#[macro_use]
44
extern crate proconio_derive as _;
55

6-
use ac_library_rs::math;
6+
use ac_library::math;
77

88
#[fastout]
99
fn main() {

examples/library-checker-unionfind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[macro_use]
22
extern crate proconio as _;
33

4-
use ac_library_rs::dsu::Dsu;
4+
use ac_library::dsu::Dsu;
55

66
fn main() {
77
input! {

examples/practice2_d_maxflow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ac_library_rs::MfGraph;
1+
use ac_library::MfGraph;
22
use std::io::Read;
33

44
#[allow(clippy::many_single_char_names)]

examples/practice2_j_segment_tree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ac_library_rs::{Max, Segtree};
1+
use ac_library::{Max, Segtree};
22
use std::io::Read;
33

44
fn main() {

examples/practice2_k_range_affine_range_sum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ac_library_rs::{LazySegtree, MapMonoid, ModInt998244353, Monoid};
1+
use ac_library::{LazySegtree, MapMonoid, ModInt998244353, Monoid};
22
use std::io::Read;
33

44
type Mint = ModInt998244353;

examples/practice2_l_lazy_segment_tree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![allow(clippy::many_single_char_names)]
2-
use ac_library_rs::{LazySegtree, MapMonoid, Monoid};
2+
use ac_library::{LazySegtree, MapMonoid, Monoid};
33
use std::io::Read;
44
use std::iter;
55

src/dsu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// # Example
1010
///
1111
/// ```
12-
/// use ac_library_rs::Dsu;
12+
/// use ac_library::Dsu;
1313
/// use proconio::{input, source::once::OnceSource};
1414
///
1515
/// input! {

0 commit comments

Comments
 (0)