-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (58 loc) · 1.25 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
[package]
name = "mcts"
version = "0.1.0"
edition = "2021"
default-run = "playground"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.profiling]
inherits = "release"
debug = true
lto=true
[lib]
name = "mcts"
path = "src/lib.rs"
[[bin]]
name = "playground"
path = "demo/playground.rs"
[[bin]]
name = "druid"
path = "demo/druid.rs"
[[bin]]
name = "human"
path = "demo/human.rs"
[[bin]]
name = "hyper"
path = "demo/hyper.rs"
[[bin]]
name = "book"
path = "demo/book.rs"
[dependencies]
nimlib = "0.1.1"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.8.1"
color-backtrace = "0.6.1"
log = "0.4.20"
pretty_env_logger = "0.5.0"
nonempty = "0.9.0"
rand_xorshift = "0.3.0"
rand_core = "0.6.4"
rustc-hash = "1.1.0"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
backtrace = "0.3.69"
indicatif = { version = "0.17.8", features = ["rayon"] }
clap = { version = "4.5.1", features = ["derive"] }
proptest = "1.4.0"
weighted_rand = "0.4.2"
rand_distr = "0.4.3"
[profile.release]
debug=true
lto=true
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "ttt"
harness = false
[profile.samply]
inherits = "release"
debug = true