dioxus/packages/html/Cargo.toml

89 lines
2.4 KiB
TOML
Raw Normal View History

2021-06-17 22:00:32 +00:00
[package]
name = "dioxus-html"
version = { workspace = true }
2021-09-25 00:54:50 +00:00
authors = ["Jonathan Kelley"]
2024-01-19 03:27:55 +00:00
edition = "2021"
2021-09-25 00:54:50 +00:00
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
license = "MIT OR Apache-2.0"
2021-12-15 21:04:27 +00:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "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 }
2023-07-19 17:19:23 +00:00
dioxus-rsx = { workspace = true, features = ["hot_reload"], optional = true }
2023-08-11 02:59:52 +00:00
dioxus-html-internal-macro = { workspace = true }
2024-02-02 20:47:59 +00:00
generational-box = { workspace = 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"
enumset = "1.1.2"
keyboard-types = "0.7"
2022-11-16 00:05:22 +00:00
async-trait = "0.1.58"
2023-11-21 20:46:47 +00:00
serde-value = { version = "0.7.0", optional = true }
2023-06-19 19:29:11 +00:00
tokio = { workspace = true, features = ["fs", "io-util"], optional = true }
rfd = { version = "0.14", optional = true }
futures-channel = { workspace = true }
serde_json = { version = "1", optional = true }
tracing.workspace = true
rustversion = "1.0.17"
[dependencies.web-sys]
optional = true
version = "0.3.56"
features = [
2023-09-12 22:28:55 +00:00
"Touch",
"TouchList",
"TouchEvent",
"MouseEvent",
"DragEvent",
"InputEvent",
"ClipboardEvent",
"KeyboardEvent",
"WheelEvent",
"AnimationEvent",
"TransitionEvent",
"PointerEvent",
"FocusEvent",
"CompositionEvent",
]
2021-11-07 03:11:17 +00:00
2022-12-21 02:48:28 +00:00
[dev-dependencies]
serde_json = "1"
dioxus = { workspace = true }
dioxus-web = { workspace = true }
tokio = { workspace = true, features = ["time"] }
2022-12-21 02:48:28 +00:00
2021-11-07 03:11:17 +00:00
[features]
default = ["serialize", "mounted", "eval"]
2023-06-30 20:59:59 +00:00
serialize = [
"dep:serde",
"dep:serde_json",
"dep:serde_repr",
2023-06-30 20:59:59 +00:00
"euclid/serde",
"keyboard-types/serde",
"dioxus-core/serialize",
2023-11-21 20:46:47 +00:00
"serde-value",
2023-06-30 20:59:59 +00:00
]
mounted = [
2023-11-21 20:46:47 +00:00
"web-sys?/Element",
"web-sys?/DomRect",
"web-sys?/ScrollIntoViewOptions",
"web-sys?/ScrollLogicalPosition",
"web-sys?/ScrollBehavior",
"web-sys?/HtmlElement",
]
eval = [
"dep:serde",
"dep:serde_json"
]
wasm-bind = ["dep:web-sys", "dep:wasm-bindgen"]
native-bind = ["dep:tokio"]
hot-reload-context = ["dep:dioxus-rsx"]
html-to-rsx = []
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
feature = ["html-to-rsx", "hot-reload-context", "html-to-rsx", "native-bind", "wasm-bind"]