Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dioxus-rsx"
  3. version = { workspace = true }
  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. quote = { workspace = true }
  15. proc-macro2 = { workspace = true, features = ["span-locations"] }
  16. dioxus-core = { workspace = true, optional = true }
  17. syn = { workspace = true, features = ["full", "extra-traits"] }
  18. serde = { workspace = true, features = ["derive"], optional = true }
  19. internment = { version = "0.7.0", optional = true }
  20. krates = { version = "0.16.6", optional = true }
  21. tracing = { workspace = true }
  22. [features]
  23. default = ["html"]
  24. hot_reload = ["krates", "internment", "dioxus-core"]
  25. serde = ["dep:serde"]
  26. html = []