-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 809 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
[package]
name = "project-H"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.11.0"
block-mesh = "0.2.0"
ndshape = "0.3.0"
ahash = { version = "0.8.3", features = ["serde"] }
futures-lite = "1.13.0"
# bevy_flycam = "0.10.1"
bevy-inspector-egui = "0.19.0"
bevy_egui = "0.21.0"
sled = "0.34.7"
serde = "1.0.164"
bincode = "1.3.3"
simdnoise = "3.1.6"
bevy_rapier3d = "0.22.0"
bevy_atmosphere = "0.7.0"
controller = { path = "crates/controller", version = "0.1.0" }
walkdir = "2.3.3"
structopt = "0.3"
ron = "0.8.0"
bevy_console = "0.8.0"
clap = { version = "=4.1.10", features = ["derive"]}
bevy-ui-dsl = "0.6.1"
[profile.dev.package.bevy_rapier3d]
opt-level = 3
[profile.release]
codegen-units = 1