Cargo.toml 702 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dioxus-core-macro"
  3. version = "0.2.0"
  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. proc-macro-error = "1"
  17. proc-macro2 = { version = "1.0.6" }
  18. quote = "1.0"
  19. syn = { version = "1.0.11", features = ["full", "extra-traits"] }
  20. # testing
  21. [dev-dependencies]
  22. rustversion = "1.0"
  23. trybuild = "1.0"