-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (66 loc) · 1.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "abc094"
version = "0.1.0"
edition = "2018"
[package.metadata.cargo-compete.bin]
abc094-a = { alias = "a", problem = "https://atcoder.jp/contests/abc094/tasks/abc094_a" }
abc094-b = { alias = "b", problem = "https://atcoder.jp/contests/abc094/tasks/abc094_b" }
abc094-c = { alias = "c", problem = "https://atcoder.jp/contests/abc094/tasks/arc095_a" }
abc094-d = { alias = "d", problem = "https://atcoder.jp/contests/abc094/tasks/arc095_b" }
[[bin]]
name = "abc094-a"
path = "src/bin/a.rs"
[[bin]]
name = "abc094-b"
path = "src/bin/b.rs"
[[bin]]
name = "abc094-c"
path = "src/bin/c.rs"
[[bin]]
name = "abc094-d"
path = "src/bin/d.rs"
[dependencies]
num = "=0.2.1"
num-bigint = "=0.2.6"
num-complex = "=0.2.4"
num-integer = "=0.1.42"
num-iter = "=0.1.40"
num-rational = "=0.2.4"
num-traits = "=0.2.11"
num-derive = "=0.3.0"
ndarray = "=0.13.0"
nalgebra = "=0.20.0"
alga = "=0.9.3"
libm = "=0.2.1"
rand = { version = "=0.7.3", features = ["small_rng"] }
getrandom = "=0.1.14"
rand_chacha = "=0.2.2"
rand_core = "=0.5.1"
rand_hc = "=0.2.0"
rand_pcg = "=0.2.1"
rand_distr = "=0.2.2"
petgraph = "=0.5.0"
indexmap = "=1.3.2"
regex = "=1.3.6"
lazy_static = "=1.4.0"
ordered-float = "=1.0.2"
ascii = "=1.0.0"
permutohedron = "=0.2.4"
superslice = "=1.0.0"
itertools = "=0.9.0"
itertools-num = "=0.1.3"
maplit = "=1.0.2"
either = "=1.5.3"
im-rc = "=14.3.0"
fixedbitset = "=0.2.0"
bitset-fixed = "=0.1.0"
proconio = { version = "=0.3.6", features = ["derive"] }
text_io = "=0.1.8"
whiteread = "=0.5.0"
rustc-hash = "=1.1.0"
smallvec = "=1.2.0"
[dev-dependencies]
[features]
local = []
[profile.dev]
opt-level = 3