-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (47 loc) · 1.19 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
50
51
52
53
54
55
56
57
#cargo-features = ["profile-overrides"]
[package]
name = "survival"
version = "0.1.0"
authors = ["Walter Pearce <jaynus@gmail.com>"]
edition = "2018"
[dependencies]
amethyst = { path = "../amethyst", default-features = false, features = ["legion-ecs", "nightly", "animation", "audio", "locale", "renderer", "vulkan", "gltf", "experimental-spirv-reflection", "shader-compiler", "tiles"] }
log = { version = "0.4.6", features = ["serde"] }
serde = { version = "1.0", features = ["derive", "rc"] }
failure = "0.1"
core = { path = "core" }
map = { path = "map" }
body = { path = "body" }
ai = { path = "ai" }
psyche = { path = "psyche" }
survival_derive = { path = "survival_derive" }
amethyst-imgui = { path = "../amethyst-imgui", features = ["docking"] }
arrayref = "*"
strum = "*"
strum_macros = "*"
num-traits = "0.2"
num-derive = "0.2"
lazy_static = "1.4"
[dev-dependencies]
approx = "0.3"
criterion = "0.2"
[[bin]]
name = "survival_game"
path = "src/game.rs"
[lib]
name = "survival"
path = "src/lib.rs"
[workspace]
members = [
"ai",
"assets",
"psyche",
"body",
"core",
"survival_derive",
"external/worldgen",
"external/goap",
"external/iaus"
]
[profile.release]
debug = true