-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
80 lines (68 loc) · 1.52 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
[package]
name = "hazel"
version = "0.1.0"
authors = ["Joe Fredette <[email protected]>"]
description = "Chess Engine"
edition = "2021"
[lib]
name="hazel"
bench = false
path="src/lib.rs"
[[bin]]
name="hazel"
path="src/main.rs"
# I might featureflag some stuff, e.g., serde and that, to reduce compile times?
[dependencies]
clap = { version = "2.33", features = ["yaml"]}
yaml-rust = "0.4.1"
lazy_static = "1.4.0"
rand = "0.8.5"
tracing = "0.1"
serde = { version = "1.0.203", features = ["derive"] }
ratatui = "0.29.0"
serde_json = "1.0.117"
rayon = "1.10.0"
crossbeam = "0.8.4"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tokio = { version = "1.43.0", features = ["full"] }
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.13", features = ["io"] }
const-str = "0.6.0"
mutants = "0.0.3"
nom = "7.1.3"
similar-asserts = "1.6.1"
insta = "1.42.1"
async-trait = "0.1.86"
console-subscriber = "0.4.1"
[dev-dependencies]
criterion = "0.5.1"
criterion-macro = "0.4.0"
insta = "1.42.1"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
tracing-test = "0.2.5"
# Removing benchmarking temporarily
#[[bench]]
#name = "benchmarks"
#harness = true
[profile.bench]
opt-level = 3
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
incremental = false
overflow-checks = false
[profile.release]
opt-level = 3
debug = true
[profile.mutants]
inherits = "test"
debug = false
debug-assertions = false
opt-level = 3
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3