123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- [package]
- name = "dioxus-web"
- version = { workspace = true }
- authors = ["Jonathan Kelley"]
- edition = "2018"
- 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.4/getting_started/wasm"
- keywords = ["dom", "ui", "gui", "react", "wasm"]
- [dependencies]
- dioxus-core = { workspace = true, features = ["serialize"] }
- dioxus-html = { workspace = true, features = ["wasm-bind"] }
- dioxus-interpreter-js = { workspace = true, features = [
- "minimal_bindings",
- "web",
- ] }
- js-sys = "0.3.56"
- wasm-bindgen = { workspace = true, features = ["enable-interning"] }
- 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" }
- serde = { version = "1.0" }
- serde-wasm-bindgen = "0.5.0"
- async-trait = "0.1.58"
- async-channel = "1.8.0"
- [dependencies.web-sys]
- version = "0.3.56"
- features = [
- "Document",
- "HtmlElement",
- "HtmlInputElement",
- "HtmlSelectElement",
- "HtmlTextAreaElement",
- "HtmlFormElement",
- "Text",
- "Window",
- "DataTransfer",
- "console"
- ]
- [features]
- default = ["panic_hook", "mounted", "file_engine", "hot_reload", "eval"]
- panic_hook = ["console_error_panic_hook"]
- hydrate = [
- "web-sys/Comment",
- ]
- mounted = [
- "web-sys/Element",
- "dioxus-html/mounted"
- ]
- file_engine = [
- "web-sys/File",
- "web-sys/FileList",
- "web-sys/FileReader",
- ]
- hot_reload = [
- "web-sys/MessageEvent",
- "web-sys/WebSocket",
- "web-sys/Location",
- ]
- eval = [
- "dioxus-html/eval",
- ]
- [dev-dependencies]
- dioxus = { workspace = true }
- wasm-bindgen-test = "0.3.29"
- dioxus-ssr = { workspace = true}
- wasm-logger = "0.2.0"
- gloo-timers = "0.2.3"
- gloo-dialogs = "0.1.1"
- dioxus-web = { path = ".", features = ["hydrate"] }
- tracing-wasm = "0.2.1"
|