Cargo.toml 587 B

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