Cargo.toml 724 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dioxus-core-macro"
  3. version = "0.1.4"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Core macro for Dioxus Virtual DOM"
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [lib]
  14. proc-macro = true
  15. [dependencies]
  16. once_cell = "1.8"
  17. proc-macro-error = "1.0.4"
  18. proc-macro2 = { version = "1.0.6" }
  19. quote = "1.0"
  20. syn = { version = "1.0.11", features = ["full", "extra-traits"] }
  21. # testing
  22. [dev-dependencies]
  23. rustversion = "1.0"
  24. trybuild = "1.0"