forked from TeamAtomECS/AtomECS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 926 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
[package]
name = "atomecs"
version = "0.5.0"
authors = ["Pi-sun <[email protected]>", "ElliotB256 <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later"
[dependencies]
atomecs-derive = { git = "https://github.com/TeamAtomECS/AtomECS-derive" }
rayon = "1.5.0"
specs={ version="0.16.1", features=["rayon"] }
specs-derive = "0.4.1"
rand = "0.8.3"
rand_distr = "0.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8.9"
assert_approx_eq = "1.1.0"
nalgebra = { version = "0.18", features = ["serde-serialize"] }
csv = "1.1"
byteorder = "1.3.2"
[dev-dependencies]
gnuplot="0.0.31"
criterion = "0.3"
[[bench]]
name = "rate_calculation"
harness = false
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 16
panic = 'unwind'
incremental = false
overflow-checks = false