mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
cda8bb24f1
* remove native and web features from dioxus-html * Fix downcasting web events * Fix desktop with tokio disabled
115 lines
3.1 KiB
TOML
115 lines
3.1 KiB
TOML
[package]
|
|
name = "dioxus-web"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
description = "Web renderer for Dioxus using websys"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com/learn/0.5/getting_started"
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|
|
|
[dependencies]
|
|
dioxus-core = { workspace = true }
|
|
dioxus-core-types = { workspace = true }
|
|
dioxus-html = { workspace = true }
|
|
dioxus-devtools = { workspace = true }
|
|
dioxus-signals = { workspace = true }
|
|
dioxus-interpreter-js = { workspace = true, features = [
|
|
"minimal_bindings",
|
|
"webonly",
|
|
] }
|
|
generational-box = { workspace = true }
|
|
|
|
js-sys = "0.3.56"
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = "0.4.29"
|
|
tracing = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
|
futures-util = { workspace = true, features = [
|
|
"std",
|
|
"async-await",
|
|
"async-await-macro",
|
|
] }
|
|
futures-channel = { workspace = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
serde = { version = "1.0", optional = true }
|
|
serde-wasm-bindgen = { version = "0.5.0", optional = true }
|
|
|
|
ciborium = { workspace = true, optional = true }
|
|
async-trait = { version = "0.1.58", optional = true }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.56"
|
|
features = [
|
|
"AnimationEvent",
|
|
"ClipboardEvent",
|
|
"CloseEvent",
|
|
"Comment",
|
|
"CompositionEvent",
|
|
"console",
|
|
"CustomEvent",
|
|
"DataTransfer",
|
|
"Document",
|
|
"DragEvent",
|
|
"FocusEvent",
|
|
"HtmlElement",
|
|
"HtmlFormElement",
|
|
"HtmlInputElement",
|
|
"HtmlSelectElement",
|
|
"HtmlTextAreaElement",
|
|
"InputEvent",
|
|
"KeyboardEvent",
|
|
"MouseEvent",
|
|
"NodeList",
|
|
"PointerEvent",
|
|
"ResizeObserverEntry",
|
|
"ResizeObserverSize",
|
|
"Text",
|
|
"Touch",
|
|
"TouchEvent",
|
|
"TouchList",
|
|
"TransitionEvent",
|
|
"WheelEvent",
|
|
"Window",
|
|
]
|
|
|
|
[build-dependencies]
|
|
lazy-js-bundle = { workspace = true }
|
|
|
|
[features]
|
|
default = ["panic_hook", "mounted", "file_engine", "devtools", "document"]
|
|
panic_hook = ["dep:console_error_panic_hook"]
|
|
hydrate = ["web-sys/Comment", "ciborium", "dep:serde"]
|
|
mounted = [
|
|
"web-sys/Element",
|
|
"dioxus-html/mounted",
|
|
"web-sys/Element",
|
|
"web-sys/DomRect",
|
|
"web-sys/ScrollIntoViewOptions",
|
|
"web-sys/ScrollLogicalPosition",
|
|
"web-sys/ScrollBehavior",
|
|
"web-sys/HtmlElement",
|
|
]
|
|
file_engine = [
|
|
"dioxus-html/file_engine",
|
|
"dep:async-trait",
|
|
"web-sys/File",
|
|
"web-sys/FileList",
|
|
"web-sys/FileReader"
|
|
]
|
|
devtools = ["web-sys/MessageEvent", "web-sys/WebSocket", "web-sys/Location", "dep:serde_json", "dep:serde", "dioxus-core/serialize"]
|
|
document = ["dioxus-html/document", "dep:serde-wasm-bindgen", "dep:serde_json", "dep:serde"]
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true, default-features = true }
|
|
wasm-bindgen-test = "0.3.29"
|
|
dioxus-ssr = { workspace = true, default-features = false }
|
|
gloo-timers = "0.2.3"
|
|
gloo-dialogs = "0.1.1"
|
|
dioxus-web = { path = ".", features = ["hydrate"] }
|
|
tracing-wasm = "0.2.1"
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|