forked from Game4all/vx_bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 767 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
[package]
name = "vx_bevy"
version = "0.2.0"
authors = ["Lucas A. <[email protected]>"]
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.8.1"
ndshape = "0.3.0"
block-mesh = "0.2.0"
ndcopy = "0.3.0"
thread_local = "1.1.4"
bevy_egui = "0.16.0"
float-ord = "0.3.2"
futures-lite = "1.12.0"
once_cell = "1.0"
simdnoise = { git = "https://github.com/jackmott/rust-simd-noise" }
bevy_atmosphere = "0.4.0"
bitflags = "1.3.2"
ilattice = { version = "0.1.0", features = ["glam", "morton-encoding"] }
[patch.crates-io]
ilattice = { git = "https://github.com/Game4all/ilattice-rs", branch = "update-glam" }
[profile.dev]
opt-level = 3
[profile.release]
lto = "thin"