Cargo.toml 635 B

12345678910111213141516171819202122
  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. rust-version = "1.60.0"
  12. publish = false
  13. [dependencies]
  14. dioxus = { path = "../../packages/dioxus" }
  15. manganis = { workspace = true }
  16. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  17. dioxus-desktop = { path = "../../packages/desktop" }
  18. [target.'cfg(target_arch = "wasm32")'.dependencies]
  19. dioxus-web = { path = "../../packages/web" }