Cargo.toml 544 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "dioxus-core-macro"
  3. version = "0.1.2"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. description = "Core macro for Dioxus Virtual DOM"
  7. "license" = "MIT/Apache-2.0"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [lib]
  10. proc-macro = true
  11. [dependencies]
  12. once_cell = "1.8"
  13. proc-macro2 = { version = "1.0.6" }
  14. quote = "1.0"
  15. syn = { version = "1.0.11", features = ["full", "extra-traits"] }
  16. # testing
  17. [dev-dependencies]
  18. rustversion = "1.0"
  19. trybuild = "1.0"