-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
81 lines (76 loc) · 1.17 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
76
77
78
79
80
81
[workspace]
resolver = "2"
members = [
"field",
"common",
"rotate",
"ladders",
"test-images",
"uct",
"minimax",
"patterns",
"zero",
"zero-burn",
"zero-train",
"initial",
"iced",
"svg",
"sgf",
"ai",
"ais",
"protocol",
"cli",
"client",
"term-render",
"versus",
"server",
"bench"
]
[workspace.dependencies]
rand = "0.8"
rand_xoshiro = "0.6"
rand_distr = "0.4"
either = "1.12"
itertools = "0.13"
num-traits = "0.2"
ndarray = "0.15"
crossbeam = "0.8"
rayon = "1.10"
num_cpus = "1.16"
burn = { version = "0.13", default-features = false, features = [ "std" ] }
strum = { version = "0.26", features = [ "derive" ] }
serde = "1.0"
serde_json = "1.0"
serde_with = "3.8"
svg = "0.17"
web-time = "1.1"
sgf-parse = "4.2"
log = "0.4"
env_logger = "0.11"
thiserror = "1.0"
anyhow = "1.0"
criterion = "0.5"
clap = "4.5"
humantime = "2.1"
futures = "0.3"
async-process = "2.2"
postcard = "1.0"
[profile.dev]
opt-level = 0
lto = false
debug = true
panic = "unwind"
[profile.test]
opt-level = 3
lto = false
debug = true
[profile.bench]
opt-level = 3
lto = true
debug = false
[profile.release]
opt-level = 3
lto = true
debug = false
panic = "abort"
codegen-units = 1