Cargo.toml 541 B

123456789101112131415161718192021222324
  1. # Copyright © SixtyFPS GmbH <info@slint.dev>
  2. # SPDX-License-Identifier: MIT
  3. [package]
  4. name = "wgpu-texture"
  5. version = "0.0.0"
  6. edition = "2021"
  7. license = "MIT"
  8. publish = false
  9. [features]
  10. default = ["desktop"]
  11. desktop = ["dioxus/desktop"]
  12. native = ["dioxus/native"]
  13. tracing = ["dep:tracing-subscriber", "dioxus-native/tracing"]
  14. [dependencies]
  15. dioxus-native = { path = "../../packages/native" }
  16. dioxus = { workspace = true }
  17. wgpu = "24"
  18. winit = "0.30"
  19. bytemuck = "1"
  20. color = "0.3"
  21. tracing-subscriber = { workspace = true, optional = true }