1
0

Cargo.toml 991 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dioxus-rsx"
  3. version = "0.6.2"
  4. authors = ["Jonathan Kelley", "Evan Almloff"]
  5. edition = "2021"
  6. license = "MIT OR Apache-2.0"
  7. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. proc-macro2 = { workspace = true, features = ["span-locations"] }
  15. proc-macro2-diagnostics = { workspace = true }
  16. quote = { workspace = true }
  17. syn = { workspace = true, features = ["full", "extra-traits", "visit", "visit-mut"] }
  18. [features]
  19. default = []
  20. [dev-dependencies]
  21. prettyplease = { workspace = true }
  22. prettier-please = { workspace = true }
  23. [package.metadata.docs.rs]
  24. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]