1
0

Cargo.toml 782 B

1234567891011121314151617181920
  1. [package]
  2. name = "dioxus-rsx"
  3. version = "0.0.2"
  4. edition = "2018"
  5. license = "MIT/Apache-2.0"
  6. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com"
  9. documentation = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react"]
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. proc-macro2 = { version = "1.0", features = ["span-locations"] }
  14. dioxus-core = { path = "../core", version = "0.3.0"}
  15. syn = { version = "1.0", features = ["full", "extra-traits"] }
  16. quote = { version = "1.0" }
  17. serde = { version = "1.0", features = ["derive"] }
  18. internment = "0.7.0"