-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
63 lines (52 loc) · 1.13 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
cargo-features = ["trim-paths"]
# Comment out cargo-features and [profile.release.trim-paths] if you are building on stable
[package]
name = "cormine"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy_egui = { version = "0.28.0", optional = true }
noise = "0.9.0"
rand = "0.8.5"
argh = "0.1.12"
leb128 = "0.2.5"
bit_field = "0.10.2"
cormine_shared = { version = "0.1.0", path = "cormine_shared" }
renderdoc = { version = "0.12", optional = true }
either = "1.13.0"
ndarray = "0.16.1"
[dependencies.bevy]
version = "0.14"
default-features = false
features = [
"bevy_asset",
"bevy_pbr",
"bevy_render",
"bevy_ui",
"bevy_winit",
"multi_threaded",
"png",
"tonemapping_luts",
"webgl2",
"x11",
]
[dependencies.log]
version = "0.4"
features = ["max_level_debug", "release_max_level_warn"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
lto = "thin"
strip = false
panic = "abort"
trim-paths = "all"
[features]
default = ["wireframe", "debug"]
wireframe = []
renderdoc = ["dep:renderdoc"]
debug = ["bevy_egui"]
[workspace]
members = ["cormine_shared"]