summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: ad22026879a0716a0e5092793b0778c948aec926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "steam-powered-wyrm"
version = "1.0.0"
edition = "2018"

[dependencies]
serde = { version = "1.0.90", features = ["derive"] }
serde_json = "1.0.39"
time = "0.1.42"
num-traits = "0.2.6"
arrayvec = "0.4.10"
fnv = "1.0.6"
rayon = "1.1.0"

[profile.release]
debug = true
debug-assertions = true
overflow-checks = true

[features]
logging = []

default = []