-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (44 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
51 lines (44 loc) · 1.15 KB
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
[package]
name = "scrb"
version = "0.1.0"
edition = "2021"
default-run = "scrb"
[dependencies]
bevy = { version = "0.13.2" }
bevy_asset_loader = "0.20.2"
bevy_atmosphere = "0.9.1"
bevy_panorbit_camera = "0.18.0"
bevy_rapier3d = { version = "0.25.0", features = [
"simd-stable",
"debug-render-3d",
] }
rand = "0.8.5"
bevy_mod_picking = { version = "0.18.2", default-features = false, features = [
"backend_rapier",
"debug",
"selection",
"highlight",
] }
bevy_lunex = { version = "0.1.0-alpha", features = ["picking"] } # UI
bevy_eventlistener = { version = "0.7.0" }
bevy_simple_text_input = "0.7.0"
reqwest = "0.12.4"
serde_json = "1.0.117"
serde = { version = "1.0.203", features = ["derive"] }
ron = "0.8.1"
bevy-scene-hook = "10.0.0"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[[bin]]
name = "build_color_trie"
path = "src/bin/build_color_trie.rs"
[[bin]]
name = "build_roughness_trie"
path = "src/bin/build_roughness_trie.rs"
[[bin]]
name = "build_scale_trie"
path = "src/bin/build_scale_trie.rs"