Cargo.toml 714 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "dioxus-html-internal-macro"
  3. version = "0.6.2"
  4. edition = "2021"
  5. repository = "https://github.com/DioxusLabs/dioxus/"
  6. homepage = "https://dioxuslabs.com"
  7. keywords = ["dom", "ui", "gui", "react", "liveview"]
  8. license = "MIT OR Apache-2.0"
  9. description = "HTML function macros for Dioxus"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. proc-macro2 = { workspace = true }
  13. syn = { workspace = true, features = ["full"] }
  14. quote = { workspace = true }
  15. convert_case = { workspace = true }
  16. [lib]
  17. proc-macro = true
  18. [[test]]
  19. name = "tests"
  20. path = "tests/progress.rs"
  21. [dev-dependencies]
  22. trybuild = { workspace = true, features = ["diff"] }