forked from PhaestusFox/MindCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 1.01 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
[package]
name = "minecraft_clone"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = {version = "0.14", features = ["trace"]}
# bevy_editor_pls = "0.8"
bevy_rapier3d = { version = "0.27.0", features = [ "simd-stable", "debug-render-3d", "parallel" ] }
rand = "0.8"
strum_macros = "*"
strum = "*"
noise = "*"
indexmap = "*"
uuid = "*"
# bevy_diagnostics_explorer = {git = "https://github.com/PhaestusFox/bevy-diagnostics-explorer.git"}
futures-lite = "*"
# belly = {git = "https://github.com/jkb0o/belly.git", branch = "bevy-0.11"}
# bevy_console = {git = "https://github.com/RichoDemus/bevy-console.git"}
clap = "*"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
[patch.crates-io]
# bevy_editor_pls = { git = "https://github.com/zhaop/bevy_editor_pls.git", rev = "340a0e2cb1fa96b512e91ce35cd072059b066346" }
bevy_rapier3d = {path = "D:\\deps/bevy_rapier/bevy_rapier3d"}