restore after broken git
This commit is contained in:
commit
138c62ac34
51 changed files with 7559 additions and 0 deletions
30
Cargo.toml
Normal file
30
Cargo.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[package]
|
||||
name = "rgg-zuma"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
bevy = "0.18.1"
|
||||
rand = "0.10.0"
|
||||
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies.bevy]
|
||||
version = "0.18.1"
|
||||
default-features = false
|
||||
features = [
|
||||
"wayland",
|
||||
"x11",
|
||||
]
|
||||
|
||||
[target.'cfg(target_os = "windows")'.dependencies.bevy]
|
||||
version = "0.18.1"
|
||||
default-features = false
|
||||
features = []
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
lto = "fat"
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
strip = true
|
||||
debug = false
|
||||
Loading…
Add table
Add a link
Reference in a new issue