Cargo.toml 684 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "dioxus-router-macro"
  3. version = { workspace = true }
  4. authors = ["Evan Almloff"]
  5. edition = "2021"
  6. description = "Macro for Dioxus Router"
  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. keywords = ["dom", "ui", "gui", "react", "router"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [lib]
  14. proc-macro = true
  15. [dependencies]
  16. syn = { workspace = true, features = ["extra-traits", "full"] }
  17. quote = { workspace = true }
  18. proc-macro2 = { workspace = true }
  19. slab = { workspace = true }
  20. [features]
  21. default = []