-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (46 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (46 loc) · 1.19 KB
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
[package]
name = "rust_chess"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.31"
clap = { version = "4.4.8", features = ["derive"] }
color-eyre = "0.6.2"
itertools = "0.12.0"
once_cell = "1.18.0"
rand = "0.8.5"
rayon = "1.8.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
axum = "0.7"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.5", features = ["fs", "cors"] }
rusqlite = { version = "0.31", features = ["bundled"] }
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
pretty_assertions = "1.4.0"
tempfile = "3"
[[bin]]
name = "generate_stockfish_reference"
path = "src/bin/generate_stockfish_reference.rs"
[[bin]]
name = "web_server"
path = "src/bin/web_server.rs"
[[bin]]
name = "benchmark_timing"
path = "src/bin/benchmark_timing.rs"
[[bin]]
name = "benchmark_tracker"
path = "src/bin/benchmark_tracker.rs"
[[bench]]
name = "benchmarks"
harness = false
[profile.profiling]
# use release mode for benchmarks
inherits = "release"
strip = false
debug = true
[profile.release]
lto = true
codegen-units = 1