Cargo.toml 929 B

12345678910111213141516171819202122232425262728293031323334
  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 = [
  12. "dom",
  13. "ui",
  14. "user interface",
  15. "gui",
  16. "react",
  17. "state",
  18. "management",
  19. "wasm",
  20. "web",
  21. "ssr",
  22. ]
  23. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  24. [dependencies]
  25. dioxus-core = { path = "../core", version ="^0.1.3"}
  26. # Serialize the Edits for use in Webview/Liveview instances
  27. serde = { version = "1", features = ["derive"], optional = true }
  28. serde_repr = { version = "0.1.7", optional = true }
  29. [features]
  30. default = []
  31. serialize = ["serde", "serde_repr"]