2021-06-17 18:00:32 -04:00
|
|
|
[package]
|
2021-07-07 18:17:00 -04:00
|
|
|
name = "dioxus-html"
|
2023-07-31 18:49:54 -07:00
|
|
|
version = { workspace = true }
|
2021-09-24 20:54:50 -04:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-06-17 18:00:32 -04:00
|
|
|
edition = "2018"
|
2021-09-24 20:54:50 -04:00
|
|
|
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
2023-07-20 18:00:07 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-15 16:04:27 -05:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
2023-01-10 10:16:11 -06:00
|
|
|
keywords = ["dom", "ui", "gui", "react"]
|
2021-06-17 18:00:32 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus-core = { workspace = true }
|
2023-07-19 10:19:23 -07:00
|
|
|
dioxus-rsx = { workspace = true, features = ["hot_reload"], optional = true }
|
2023-08-11 11:59:52 +09:00
|
|
|
dioxus-html-internal-macro = { workspace = true }
|
2021-11-06 23:11:17 -04:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2021-12-29 13:30:07 -05:00
|
|
|
serde_repr = { version = "0.1", optional = true }
|
2023-06-19 14:29:11 -05:00
|
|
|
wasm-bindgen = { workspace = true, optional = true }
|
2022-05-06 23:54:07 +03:00
|
|
|
euclid = "0.22.7"
|
2023-08-28 12:35:43 -05:00
|
|
|
enumset = "1.1.2"
|
2023-08-21 21:28:32 +07:00
|
|
|
keyboard-types = "0.7"
|
2022-11-15 16:05:22 -08:00
|
|
|
async-trait = "0.1.58"
|
2023-11-21 14:46:47 -06:00
|
|
|
serde-value = { version = "0.7.0", optional = true }
|
2023-06-19 14:29:11 -05:00
|
|
|
tokio = { workspace = true, features = ["fs", "io-util"], optional = true }
|
2023-10-31 13:49:29 -05:00
|
|
|
rfd = { version = "0.12", optional = true }
|
2024-01-15 11:46:00 -06:00
|
|
|
futures-channel = { workspace = true }
|
2023-07-21 18:36:25 -04:00
|
|
|
serde_json = { version = "1", optional = true }
|
2022-02-12 20:57:13 +08:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
optional = true
|
|
|
|
version = "0.3.56"
|
|
|
|
features = [
|
2023-09-12 17:28:55 -05:00
|
|
|
"Touch",
|
|
|
|
"TouchList",
|
2023-08-28 12:35:43 -05:00
|
|
|
"TouchEvent",
|
|
|
|
"MouseEvent",
|
2024-01-08 14:16:09 -06:00
|
|
|
"DragEvent",
|
2023-08-28 12:35:43 -05:00
|
|
|
"InputEvent",
|
|
|
|
"ClipboardEvent",
|
|
|
|
"KeyboardEvent",
|
|
|
|
"WheelEvent",
|
|
|
|
"AnimationEvent",
|
|
|
|
"TransitionEvent",
|
|
|
|
"PointerEvent",
|
|
|
|
"FocusEvent",
|
|
|
|
"CompositionEvent",
|
2022-02-12 20:57:13 +08:00
|
|
|
]
|
2021-11-06 23:11:17 -04:00
|
|
|
|
2022-12-20 20:48:28 -06:00
|
|
|
[dev-dependencies]
|
2023-01-04 14:31:07 -05:00
|
|
|
serde_json = "1"
|
2022-12-20 20:48:28 -06:00
|
|
|
|
2021-11-06 23:11:17 -04:00
|
|
|
[features]
|
2023-08-25 21:28:44 -05:00
|
|
|
default = ["serialize", "mounted", "eval"]
|
2023-06-30 13:59:59 -07:00
|
|
|
serialize = [
|
2024-01-11 15:40:44 -06:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2023-06-30 13:59:59 -07:00
|
|
|
"serde_repr",
|
|
|
|
"euclid/serde",
|
|
|
|
"keyboard-types/serde",
|
|
|
|
"dioxus-core/serialize",
|
2023-11-21 14:46:47 -06:00
|
|
|
"serde-value",
|
2023-06-30 13:59:59 -07:00
|
|
|
]
|
2023-07-28 15:38:07 -07:00
|
|
|
mounted = [
|
2023-11-21 14:46:47 -06:00
|
|
|
"web-sys?/Element",
|
|
|
|
"web-sys?/DomRect",
|
|
|
|
"web-sys?/ScrollIntoViewOptions",
|
|
|
|
"web-sys?/ScrollLogicalPosition",
|
|
|
|
"web-sys?/ScrollBehavior",
|
|
|
|
"web-sys?/HtmlElement",
|
2023-07-28 15:38:07 -07:00
|
|
|
]
|
2023-08-25 21:28:44 -05:00
|
|
|
eval = [
|
|
|
|
"serde",
|
|
|
|
"serde_json"
|
|
|
|
]
|
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-02 23:57:20 -04:00
|
|
|
wasm-bind = ["web-sys", "wasm-bindgen"]
|
2023-06-30 13:59:59 -07:00
|
|
|
native-bind = ["tokio"]
|
2023-01-04 14:31:07 -05:00
|
|
|
hot-reload-context = ["dioxus-rsx"]
|
2024-01-03 15:18:27 -06:00
|
|
|
html-to-rsx = []
|