Cargo.toml 655 B

1234567891011121314151617181920
  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. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. dioxus-core = { path = "../core", version ="^0.1.3"}
  11. # Serialize the Edits for use in Webview/Liveview instances
  12. serde = { version = "1", features = ["derive"], optional = true }
  13. serde_repr = { version = "0.1.7", optional = true }
  14. [features]
  15. default = []
  16. serialize = ["serde", "serde_repr"]