Files
phos-neo/engine/world_generation/Cargo.toml
Amatsugu f7a3a56a0a Added generation of images based on the map
Tweaks to consistency with DIRECTIONS and HEX_CORNERS
Misc debug visualizations
2024-08-04 21:45:23 -04:00

25 lines
555 B
TOML

[package]
name = "world_generation"
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.14.0"
noise = "0.9.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.115"
asset_loader = { path = "../asset_loader" }
rayon = "1.10.0"
bevy-inspector-egui = "0.25.0"
bevy_asset_loader = { version = "0.21.0", features = [
"standard_dynamic_assets",
"3d",
] }
ron = "0.8.1"
image = "0.25.2"
[features]
tracing = ["bevy/trace_tracy"]