| Name | Message | Date |
|---|---|---|
| 📁 assets | 1 month ago | |
| 📁 docs | 1 month ago | |
| 📁 src | 1 month ago | |
| 📁 wasm | 1 month ago | |
| 📄 .gitignore | 1 month ago | |
| 📄 Cargo.lock | 1 month ago | |
| 📄 Cargo.toml | 1 month ago | |
| 📄 README.md | 1 month ago |
📄
Cargo.toml
[package]
name = "bunny-herding"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.18.1", features = ["debug"] }
rand = { version = "0.10.1", default-features = false }
rand_chacha = "0.10.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.wasm-release]
inherits = 'release'
opt-level = 'z'
lto = true
codegen-units = 1