-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (41 loc) · 981 Bytes
/
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
[package]
name = "chess_analytics"
version = "0.1.0"
authors = ["Sam Goldman <[email protected]>"]
edition = "2021"
[lib]
name = "chess_analytics"
path = "src/lib.rs"
bench = false
[[bin]]
name = "chess_analytics"
path = "src/main.rs"
bench = false
[dependencies]
regex = "1.9.5"
glob = "0.3.1"
bzip2 = "0.4.4"
rayon = "1.7.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_yaml = "0.9.25"
itertools = "0.11.0"
mockall = "0.11.4"
mockall_double = "0.3.0"
tui = "0.19.0"
termion = "2.0.1"
postcard = { version = "1.0.7", features = ["alloc"] }
packed_struct = "0.10.1"
crossterm = "0.27.0"
# mutagen = { path = "../mutagen/mutagen", optional = true }
mutagen = { git = "https://github.com/llogiq/mutagen", optional = true }
sysinfo = "0.29.10"
[dev-dependencies]
predicates = "3.0.3"
criterion = { version = "0.5", features = ["html_reports"] }
[profile.dev]
opt-level = 3
[[bench]]
name = "benchmarks"
harness = false
[features]
with_mutagen = ["mutagen"]