-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
62 lines (56 loc) · 1.67 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
[package]
name = "colonize"
version = "0.8.0"
authors = ["Nikita Pekin <[email protected]>"]
description = "A Dwarf Fortress/Rimworld-like game written in Rust"
repository = "https://github.com/indiv0/colonize"
readme = "README.md"
keywords = [
"colonize",
"game",
"dwarf",
"fortress",
"rimworld",
"bevy"
]
license = "GPL-3.0-or-later"
edition = "2018"
[workspace]
members = ["crates/*"]
[dependencies]
bevy = { version = "0.4.0", default-features = false, features = ["bevy_gltf", "bevy_winit", "png", "render"] }
bevy_gilrs = { version = "0.4.0", default-features = false, optional = true }
bevy_mod_picking = { version = "0.3.1", default-features = false }
bevy_rapier3d = { version = "0.7.0", default-features = false, features = ["dim3"] }
bevy_webgl2 = { version = "0.4.1", optional = true }
building-blocks = { git = "https://github.com/bonsairobo/building-blocks", rev = "339cd43028b0501cbeda714d24d115afcb121540", default-features = false, features = ["mesh", "snappy"] }
colonize_common = { path = "crates/common" }
colonize_core = { path = "crates/core" }
colonize_noise = { path = "crates/noise" }
colonize_pbr = { path = "crates/pbr", default-features = false }
noise = { version = "0.6.0", default-features = false }
rand = "0.7.3"
[features]
default = [
"bevy/bevy_audio",
"bevy/bevy_dynamic_plugin",
"bevy/bevy_gilrs",
"bevy/bevy_wgpu",
"bevy/hdr",
"bevy/mp3",
"bevy/x11",
"bevy_gilrs",
"colonize_pbr/default"
]
wasm = [
"bevy_webgl2"
]
[profile.dev]
opt-level = 3
[profile.dev.package.bevy_mod_picking]
debug-assertions = false
[profile.release]
#debug = true
#debug-assertions = true
#overflow-checks = true
#lto = true