Cargo.toml 543 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "dioxus-core-macro"
  3. version = "0.1.1"
  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.7.2"
  13. proc-macro-hack = "0.5.19"
  14. proc-macro2 = "1.0.6"
  15. quote = "1.0"
  16. syn = { version = "1.0.11", features = ["full"] }
  17. # testing
  18. [dev-dependencies]
  19. rustversion = "1.0"
  20. trybuild = "1.0"