-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 882 Bytes
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
[package]
name = "riverbed"
version = "0.1.0"
edition = "2024"
[features]
logging = []
log_inspector = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"crates/*"
]
[dependencies]
anyhow = "*"
bevy = { version = "0.18" }
binary-greedy-meshing = "*"
cfg-if = "*"
chrono = { version = "*", features = ["serde", "rkyv"] }
confy = "*"
crossbeam = "*"
crossbeam-skiplist = "*"
csv = "*"
hashbrown = "*"
itertools = "*"
json5 = "*"
lazy_static = "*"
leafwing-input-manager = "0.20"
packed-uints = "*"
parking_lot = "*"
rand = "*"
rand_chacha = "*"
regex = "*"
riverbed_noise = { path = "crates/riverbed_noise", version = "*" }
ron = "*"
serde = "*"
strum = "*"
strum_macros = "*"
[build-dependencies]
riverbed_block_def = { path = "crates/riverbed_block_def", version = "*" }
[profile.dev]
opt-level = 1