Cargo.toml 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [package]
  2. name = "bevy_test"
  3. version = "0.1.3"
  4. edition = "2021"
  5. authors = ["deer <capreolina@protonmail.ch>", "Slime <slimepleeze@gmail.com>"]
  6. description = "A little demo using Bevy so that I can learn how it works lol"
  7. readme = "README.md"
  8. license = "CC0-1.0"
  9. keywords = ["gamedev", "bevy", "demo", "videogame"]
  10. categories = ["games"]
  11. publish = false
  12. [dependencies]
  13. fxhash = "0.2.1"
  14. getrandom = { version = "0.2.7", features = ["js"] }
  15. hound = "3.4.0"
  16. lewton = "0.10.2"
  17. rand = "0.8.5"
  18. [dependencies.bevy]
  19. version = "0.7.0"
  20. default-features = false
  21. features = [
  22. "animation",
  23. "bevy_audio",
  24. "bevy_winit",
  25. "render",
  26. "png",
  27. "vorbis",
  28. "wav",
  29. "x11",
  30. ]
  31. [dependencies.bevy_rapier2d]
  32. version = "0.15.0"
  33. features = ["wasm-bindgen"]
  34. [profile.dev]
  35. opt-level = 1
  36. [profile.dev.package."*"]
  37. opt-level = 3
  38. [profile.release]
  39. opt-level = 3
  40. debug = false
  41. rpath = false
  42. lto = "fat"
  43. debug-assertions = false
  44. codegen-units = 1
  45. panic = "abort"
  46. incremental = false
  47. overflow-checks = false
  48. strip = false