Cargo.toml 733 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dioxus-core-macro"
  3. version = "0.2.1"
  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-macro2 = { version = "1.0" }
  17. quote = "1.0"
  18. syn = { version = "1.0", features = ["full", "extra-traits"] }
  19. dioxus-rsx = { path = "../rsx" }
  20. # testing
  21. [dev-dependencies]
  22. rustversion = "1.0"
  23. trybuild = "1.0"
  24. [features]
  25. default = []