1
0

Cargo.toml 655 B

12345678910111213141516171819202122
  1. [package]
  2. name = "dioxus-html-macro"
  3. version = "0.1.0"
  4. description = "HTML-compliant macro for creating Dioxus VNodes"
  5. authors = [
  6. "Jonathan Kelley",
  7. # Originally pulled from Percy - check it out!
  8. "Chinedu Francis Nwafili <frankie.nwafili@gmail.com>",
  9. ]
  10. keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
  11. license = "MIT/Apache-2.0"
  12. edition = "2018"
  13. [lib]
  14. proc-macro = true
  15. [dependencies]
  16. proc-macro2 = { version = "0.4", features = ["span-locations"] }
  17. quote = "0.6.11"
  18. syn = { version = "0.15", features = ["full", "extra-traits"] }
  19. lazy_static = "1.4.0"
  20. # html-validation = { path = "../html-validation", version = "0.1.2" }