12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- [package]
- name = "dioxus-html"
- version = { workspace = true }
- authors = ["Jonathan Kelley"]
- edition = "2018"
- description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
- license = "MIT OR Apache-2.0"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com"
- keywords = ["dom", "ui", "gui", "react"]
- [dependencies]
- dioxus-core = { workspace = true }
- dioxus-rsx = { workspace = true, features = ["hot_reload"], optional = true }
- dioxus-html-internal-macro = { workspace = true }
- serde = { version = "1", features = ["derive"], optional = true }
- serde_repr = { version = "0.1", optional = true }
- wasm-bindgen = { workspace = true, optional = true }
- euclid = "0.22.7"
- enumset = "1.1.2"
- keyboard-types = "0.7"
- async-trait = "0.1.58"
- serde-value = { version = "0.7.0", optional = true }
- tokio = { workspace = true, features = ["fs", "io-util"], optional = true }
- rfd = { version = "0.12", optional = true }
- async-channel = "1.8.0"
- serde_json = { version = "1", optional = true }
- [dependencies.web-sys]
- optional = true
- version = "0.3.56"
- features = [
- "Touch",
- "TouchList",
- "TouchEvent",
- "MouseEvent",
- "DragEvent",
- "InputEvent",
- "ClipboardEvent",
- "KeyboardEvent",
- "WheelEvent",
- "AnimationEvent",
- "TransitionEvent",
- "PointerEvent",
- "FocusEvent",
- "CompositionEvent",
- ]
- [dev-dependencies]
- serde_json = "1"
- [features]
- default = ["serialize", "mounted", "eval"]
- serialize = [
- "serde_repr",
- "euclid/serde",
- "keyboard-types/serde",
- "dioxus-core/serialize",
- "serde-value",
- ]
- mounted = [
- "web-sys?/Element",
- "web-sys?/DomRect",
- "web-sys?/ScrollIntoViewOptions",
- "web-sys?/ScrollLogicalPosition",
- "web-sys?/ScrollBehavior",
- "web-sys?/HtmlElement",
- ]
- eval = [
- "serde",
- "serde_json"
- ]
- wasm-bind = ["web-sys", "wasm-bindgen"]
- native-bind = ["tokio"]
- hot-reload-context = ["dioxus-rsx"]
- html-to-rsx = []
|