Cargo.toml 536 B

1234567891011121314151617181920
  1. [package]
  2. name = "html-macro"
  3. version = "0.1.9"
  4. description = "html macro"
  5. authors = [
  6. "Jonathan Kelley",
  7. "Chinedu Francis Nwafili <frankie.nwafili@gmail.com>",
  8. ]
  9. keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
  10. license = "MIT/Apache-2.0"
  11. edition = "2018"
  12. [lib]
  13. proc-macro = true
  14. [dependencies]
  15. proc-macro2 = { version = "0.4", features = ["span-locations"] }
  16. quote = "0.6.11"
  17. syn = { version = "0.15", features = ["full", "extra-traits"] }
  18. html-validation = { path = "../html-validation", version = "0.1.2" }