-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (52 loc) · 2.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
members = [
"procon_bicoef",
"procon_complex",
"procon_fft",
"procon_fps",
"procon_graph",
"procon_itertools",
"procon_lazy_segtree",
"procon_math",
"procon_math_traits",
"procon_modint",
"procon_multiset",
"procon_ntt",
"procon_rollinghash",
"procon_segtree",
"procon_shortest_path",
"procon_string",
"procon_suffixarray",
"procon_sparse_table",
"procon_unionfind",
]
[package]
name = "procon"
version = "0.1.0"
authors = ["Tomoya Ishii <[email protected]>"]
edition = "2018"
license = "MIT"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "procon"
[dependencies]
__procon_segtree = { package = "procon_segtree", path = "./procon_segtree" }
__procon_math_traits = { package = "procon_math_traits", path = "./procon_math_traits" }
__procon_unionfind = { package = "procon_unionfind", path = "./procon_unionfind" }
__procon_multiset = { package = "procon_multiset", path = "./procon_multiset" }
__procon_math = { package = "procon_math", path = "./procon_math" }
__procon_complex = { package = "procon_complex", path = "./procon_complex" }
__procon_modint = { package = "procon_modint", path = "./procon_modint" }
__procon_itertools = { package = "procon_itertools", path = "./procon_itertools" }
__procon_rollinghash = { package = "procon_rollinghash", path = "./procon_rollinghash" }
__procon_string = { package = "procon_string", path = "./procon_string" }
__procon_graph = { package = "procon_graph", path = "./procon_graph" }
__procon_shortest_path = { package = "procon_shortest_path", path = "./procon_shortest_path" }
__procon_bicoef = { package = "procon_bicoef", path = "./procon_bicoef" }
__procon_fft = { package = "procon_fft", path = "./procon_fft" }
__procon_ntt = { package = "procon_ntt", path = "./procon_ntt" }
__procon_lazy_segtree = { package = "procon_lazy_segtree", path = "./procon_lazy_segtree" }
__procon_fps = { package = "procon_fps", path = "./procon_fps" }
__procon_suffixarray = { package = "procon_suffixarray", path = "./procon_suffixarray" }
__procon_sparse_table = { package = "procon_sparse_table", path = "./procon_sparse_table" }