Cargo.toml 363 B

123456789101112131415161718
  1. [package]
  2. name = "bevy-snake"
  3. authors = ["Felix Bytow <drako@drako.guru>"]
  4. description = "Snake game using the Bevy Engine"
  5. license = "MIT"
  6. repository = "https://git.drako.guru/drako/bevy-snake"
  7. version = "0.1.2"
  8. edition = "2021"
  9. publish = ["crates-drako-guru"]
  10. [dependencies]
  11. bevy = "0.7.0"
  12. [profile.dev]
  13. opt-level = 1
  14. [profile.dev.package."*"]
  15. opt-level = 3