Cargo.toml 831 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "dioxus-html"
  3. version = "0.1.0"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  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. [dependencies]
  14. dioxus-core = { path = "../core", version ="^0.1.3"}
  15. # Serialize the Edits for use in Webview/Liveview instances
  16. serde = { version = "1", features = ["derive"], optional = true }
  17. serde_repr = { version = "0.1.7", optional = true }
  18. [features]
  19. default = []
  20. serialize = ["serde", "serde_repr"]