Cargo.toml 994 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dioxus-rsx"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley", "Evan Almloff"]
  5. edition = "2018"
  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 = { version = "1.0", features = ["span-locations"] }
  15. dioxus-core = { workspace = true}
  16. syn = { version = "2.0", features = ["full", "extra-traits"] }
  17. quote = { version = "1.0" }
  18. serde = { version = "1.0", features = ["derive"], optional = true }
  19. internment = { version = "0.7.0", optional = true }
  20. krates = { version = "0.12.6", optional = true }
  21. [features]
  22. hot_reload = ["krates", "internment"]
  23. serde = ["dep:serde"]