-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (33 loc) · 866 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
workspace = { members = ["lonecli"] }
[package]
name = "lonelybot"
version = "0.2.3"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "lonelybot"
path = "src/lib.rs"
crate-type = ["cdylib", "lib"]
[lints.rust]
unsafe_code = "forbid"
[dependencies]
rand = { version = "0.8.5", default-features = false, features = ["std_rng"] }
rand_mt = "4.2.2"
arrayvec = { version = "0.7.4", default-features = false }
hashbrown = { version = "0.15", default-features = false }
static_assertions = "1.1.0"
uint = { version = "0.10", default-features = false }
[dev-dependencies]
criterion = "0.5.1"
[profile.release]
lto = true
[profile.release-with-debug]
inherits = "release"
debug = true
[profile.dev]
opt-level = 0
lto = "thin"
[[bench]]
name = "gen_moves"
harness = false