1
0

Cargo.toml 601 B

1234567891011121314151617181920
  1. [package]
  2. name = "dioxus-tailwind"
  3. version = "0.0.0"
  4. authors = []
  5. edition = "2021"
  6. description = "A tailwindcss example using Dioxus"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. publish = false
  12. [dependencies]
  13. manganis = { workspace = true }
  14. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  15. dioxus = { path = "../../packages/dioxus", features = ["desktop"] }
  16. [target.'cfg(target_arch = "wasm32")'.dependencies]
  17. dioxus = { path = "../../packages/dioxus", features = ["web"] }