-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (39 loc) · 1.27 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
# spell-checker: disable
[package]
name = "epi_bevy"
version = "0.1.0"
authors = ["Mossa <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# bevy = { git = "https://github.com/bevyengine/bevy.git", features = ["dynamic"], default-features = false }
# bevy = { path = "../bevy/", features = ["dynamic"], default-features = false }
# dynamic is behaving weird on windows
# bevy = { git = "https://github.com/bevyengine/bevy.git", features = ["dynamic"], default-features = false }
bevy = { git = "https://github.com/bevyengine/bevy.git", branch = "main", default-features = false }
# numerical rust
approx = "0.4.0"
num-traits = "0.2.14"
# num-derive = "0.3"
# enhance #rustlang
derive_more = "0.99.14"
derive-new = "0.5.9"
itertools = "0.10.0"
readonly = "0.2.0"
maplit = "1.0.2"
# error-handling
anyhow = "1.0.40"
thiserror = "1.0.24"
# serialisation
serde = { version = "1.0.126", features = ["derive"], optional = true }
serde_json = { version = "1.0.64", optional = true }
# states/outputs recorders
csv = "1.1.6"
# scenario time
chrono = "0.4.19"
# PRNG
rand = "0.8.3"
rand_distr = "0.4.0"
[features]
default = ["serialize"]
serialize = ["serde", "serde_json", "bevy/serialize"]