Skip to content

Commit fdc049e

Browse files
authored
Merge pull request #50 from qryxip/make-modules-pub-again
Make modules `pub` again
2 parents ad3a68d + 7cabbe8 commit fdc049e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/lib.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
mod convolution;
2-
mod dsu;
3-
mod fenwicktree;
4-
mod lazysegtree;
5-
mod math;
6-
mod maxflow;
7-
mod mincostflow;
8-
mod modint;
9-
mod scc;
10-
mod segtree;
1+
pub mod convolution;
2+
pub mod dsu;
3+
pub mod fenwicktree;
4+
pub mod lazysegtree;
5+
pub mod math;
6+
pub mod maxflow;
7+
pub mod mincostflow;
8+
pub mod modint;
9+
pub mod scc;
10+
pub mod segtree;
1111
#[allow(clippy::many_single_char_names)]
12-
mod string;
13-
mod twosat;
12+
pub mod string;
13+
pub mod twosat;
1414

1515
pub(crate) mod internal_bit;
1616
pub(crate) mod internal_math;

0 commit comments

Comments
 (0)