Cargo.toml 526 B

1234567891011121314151617181920212223
  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. bytemuck = "1"
  19. color = "0.3"
  20. tracing-subscriber = { workspace = true, optional = true }