-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (34 loc) · 888 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 = "galangua"
version = "0.9.2"
authors = ["tyfkda <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
opt-level = 'z' # Optimize for size.
# cargo strip can reduce binary size: https://github.com/guedou/cargo-strip
[dependencies]
clap = "3.0"
counted-array = "0.1.2"
lazy_static = "1.4.0"
serde_json = "1.0"
galangua-common = { path = "./mods/galangua-common" }
galangua-ecs = { path = "./mods/galangua-ecs" }
galangua-oo = { path = "./mods/galangua-oo" }
[dependencies.sdl2]
version = "0.35.1"
default-features = false
features = ["image", "unsafe_textures", "mixer"]
[workspace]
members = [
"galangua-wasm",
"mods/galangua-common",
"mods/galangua-ecs",
"mods/galangua-oo",
]
exclude = [
"tools",
]