-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (65 loc) · 1.81 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
[package]
name = "chessboard"
version = "0.1.0"
authors = ["Bruno Dutra <[email protected]>"]
edition = "2021"
description = "A chess engine"
repository = "https://github.com/brunocodutra/chessboard.git"
license = "GPL-3.0"
readme = "README.md"
keywords = ["chess"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }
[dependencies]
arrayvec = { version = "0.7.6", default-features = false, features = ["std"] }
byteorder = { version = "1.5.0", default-features = false, features = ["std"] }
ctor = { version = "0.2.9", default-features = false }
derive_more = { version = "1.0.0", default-features = false, features = [
"add",
"add_assign",
"constructor",
"debug",
"deref",
"deref_mut",
"display",
"error",
"from",
"into_iterator",
"mul",
"mul_assign",
"not",
] }
futures = { version = "0.3.31", default-features = false, features = [
"async-await",
"executor",
"std",
] }
rand = { version = "0.8.5", default-features = false, features = ["std", "min_const_gen"] }
rand_pcg = { version = "0.3.1", default-features = false }
rayon = { version = "1.10.0", default-features = false }
ruzstd = { version = "0.7.2", default-features = false, features = ["std"] }
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false, features = ["rayon"] }
criterion-macro = { version = "0.4.0", default-features = false }
proptest = { version = "1.5.0", default-features = false, features = ["std"] }
test-strategy = { version = "0.4.0", default-features = false }
[profile.release]
codegen-units = 1
panic = "abort"
lto = true
strip = true
[profile.dev]
opt-level = 3
[profile.bench]
debug = true
strip = false
[lib]
name = "lib"
path = "lib/lib.rs"
bench = false
[[bin]]
name = "cli"
path = "bin/main.rs"
bench = false
[[bench]]
name = "search"