forked from citybound/citybound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (54 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
58
59
60
61
62
63
64
65
66
[package]
name = "citybound"
version = "0.3.0"
authors = ["Anselm Eickhoff <[email protected]>"]
license = "AGPL-3.0"
build = "./game/build.rs"
[[bin]]
name = "citybound"
path = "./game/main.rs"
[workspace]
members = [
"./engine/allocators",
"./engine/chunky",
"./engine/compact",
"./engine/compact_macros",
"./engine/descartes",
"./engine/kay",
"./engine/kay_codegen",
"./engine/monet",
'./engine/stagemaster'
]
[dependencies]
ordered-float = "0.5.0"
itertools = "0.7.6"
rand = "0.3"
fnv = "1.0.5"
roaring = "0.5.2"
open = "1.2.1"
serde = "1.0"
serde_derive = "1.0"
imgui = "0.0.15"
backtrace = "0.3"
uuid = { version = "0.6", features = ["v4"] }
[dependencies.compact]
path = "./engine/compact/"
[dependencies.compact_macros]
path = "./engine/compact_macros/"
[dependencies.kay]
path = "./engine/kay/"
[dependencies.descartes]
path = "./engine/descartes/"
features = ["compact_containers"]
[dependencies.monet]
path = "./engine/monet/"
[dependencies.stagemaster]
path = "./engine/stagemaster/"
[build-dependencies]
kay_codegen = {path = "./engine/kay_codegen/"}
[profile.dev]
opt-level = 1
codegen-units = 4
[profile.release]
debug = true
codegen-units = 4