1
0

Cargo.toml 622 B

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