-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 905 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
[package]
name = "klondike"
version = "0.1.1"
authors = ["Rob Tsuk <rob@tsuk.com>"]
edition = "2018"
[profile.dev]
panic = "abort"
opt-level = 'z'
lto = true
[profile.release]
panic = "abort"
opt-level = 'z'
lto = true
[lib]
crate-type = ["staticlib", "cdylib"]
[dependencies]
anyhow = { version = "1.0.66", default-features = false }
crankstart = { path = "../crankstart" }
crankstart-sys = { path = "../crankstart/crankstart-sys" }
hashbrown = "0.12.3"
enum-iterator = "0.8.1"
euclid = { version = "0.22.7", default-features = false, features = [ "libm" ] }
serde = { version = "1.0.147", default-features = false, features = [ "derive", "alloc" ] }
serde_json = {version = "1.0.87", default-features = false, features = [ "alloc" ] }
rand = { version = "0.8.5", default-features = false, features = [ "alloc" ] }
rand_pcg = "0.3.1"
[target.'cfg(unix)'.dependencies]
argh = "0.1.9"
rayon = "1.5.3"