2021-06-17 22:00:32 +00:00
|
|
|
[package]
|
2021-07-07 22:17:00 +00:00
|
|
|
name = "dioxus-html"
|
2023-02-22 21:06:33 +00:00
|
|
|
version = "0.3.1"
|
2021-09-25 00:54:50 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-06-17 22:00:32 +00:00
|
|
|
edition = "2018"
|
2021-09-25 00:54:50 +00:00
|
|
|
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
2021-12-15 21:04:27 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
2023-01-10 16:16:11 +00:00
|
|
|
documentation = "https://dioxuslabs.com"
|
|
|
|
keywords = ["dom", "ui", "gui", "react"]
|
2021-06-17 22:00:32 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-core = { workspace = true }
|
|
|
|
dioxus-rsx = { workspace = true, optional = true }
|
2021-11-07 03:11:17 +00:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2021-12-29 18:30:07 +00:00
|
|
|
serde_repr = { version = "0.1", optional = true }
|
2023-06-19 19:29:11 +00:00
|
|
|
wasm-bindgen = { workspace = true, optional = true }
|
2022-05-06 20:54:07 +00:00
|
|
|
euclid = "0.22.7"
|
2022-05-07 06:31:44 +00:00
|
|
|
enumset = "1.0.11"
|
2022-05-07 07:05:52 +00:00
|
|
|
keyboard-types = "0.6.2"
|
2022-11-16 00:05:22 +00:00
|
|
|
async-trait = "0.1.58"
|
2022-12-21 02:48:28 +00:00
|
|
|
serde-value = "0.7.0"
|
2023-06-19 19:29:11 +00:00
|
|
|
tokio = { workspace = true, features = ["fs", "io-util"], optional = true }
|
2023-04-20 15:12:11 +00:00
|
|
|
rfd = { version = "0.11.3", optional = true }
|
2022-02-12 12:57:13 +00:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
optional = true
|
|
|
|
version = "0.3.56"
|
|
|
|
features = [
|
|
|
|
"TouchEvent",
|
|
|
|
"MouseEvent",
|
|
|
|
"InputEvent",
|
|
|
|
"ClipboardEvent",
|
|
|
|
"KeyboardEvent",
|
|
|
|
"TouchEvent",
|
|
|
|
"WheelEvent",
|
|
|
|
"AnimationEvent",
|
|
|
|
"TransitionEvent",
|
|
|
|
"PointerEvent",
|
|
|
|
"FocusEvent",
|
|
|
|
"CompositionEvent",
|
|
|
|
"ClipboardEvent",
|
2023-03-19 21:34:57 +00:00
|
|
|
"Element",
|
|
|
|
"DomRect",
|
|
|
|
"ScrollIntoViewOptions",
|
|
|
|
"ScrollLogicalPosition",
|
|
|
|
"ScrollBehavior",
|
2022-02-12 12:57:13 +00:00
|
|
|
]
|
2021-11-07 03:11:17 +00:00
|
|
|
|
2022-12-21 02:48:28 +00:00
|
|
|
[dev-dependencies]
|
2023-01-04 19:31:07 +00:00
|
|
|
serde_json = "1"
|
2022-12-21 02:48:28 +00:00
|
|
|
|
2021-11-07 03:11:17 +00:00
|
|
|
[features]
|
2022-12-21 02:48:28 +00:00
|
|
|
default = ["serialize"]
|
|
|
|
serialize = ["serde", "serde_repr", "euclid/serde", "keyboard-types/serde", "dioxus-core/serialize"]
|
Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4
2022-05-03 03:57:20 +00:00
|
|
|
wasm-bind = ["web-sys", "wasm-bindgen"]
|
2023-04-20 15:12:11 +00:00
|
|
|
native-bind = ["tokio", "rfd"]
|
2023-01-04 19:31:07 +00:00
|
|
|
hot-reload-context = ["dioxus-rsx"]
|