1
0

Cargo.toml 461 B

1234567891011121314151617181920
  1. [package]
  2. name = "bevy-example"
  3. version = "0.0.0"
  4. edition = "2021"
  5. license = "MIT"
  6. publish = false
  7. [features]
  8. default = ["desktop"]
  9. desktop = ["dioxus/desktop"]
  10. native = ["dioxus/native"]
  11. tracing = ["dep:tracing-subscriber", "dioxus-native/tracing"]
  12. [dependencies]
  13. bevy = { version = "0.16" }
  14. dioxus-native = { path = "../../packages/native" }
  15. dioxus = { workspace = true }
  16. wgpu = "24"
  17. color = "0.3"
  18. tracing-subscriber = { workspace = true, optional = true }