12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- [package]
- name = "bevy_test"
- version = "0.1.3"
- edition = "2021"
- authors = ["deer <capreolina@protonmail.ch>", "Slime <slimepleeze@gmail.com>"]
- description = "A little demo using Bevy so that I can learn how it works lol"
- readme = "README.md"
- license = "CC0-1.0"
- keywords = ["gamedev", "bevy", "demo", "videogame"]
- categories = ["games"]
- publish = false
- [dependencies]
- fxhash = "0.2.1"
- getrandom = { version = "0.2.7", features = ["js"] }
- hound = "3.4.0"
- lewton = "0.10.2"
- rand = "0.8.5"
- [dependencies.bevy]
- version = "0.7.0"
- default-features = false
- features = [
- "animation",
- "bevy_audio",
- "bevy_winit",
- "render",
- "png",
- "vorbis",
- "wav",
- "x11",
- ]
- [dependencies.bevy_rapier2d]
- version = "0.15.0"
- features = ["wasm-bindgen"]
- [profile.dev]
- opt-level = 1
- [profile.dev.package."*"]
- opt-level = 3
- [profile.release]
- opt-level = 3
- debug = false
- rpath = false
- lto = "fat"
- debug-assertions = false
- codegen-units = 1
- panic = "abort"
- incremental = false
- overflow-checks = false
- strip = false
|