123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- [package]
- name = "dioxus-web"
- version = "0.3.2"
- authors = ["Jonathan Kelley"]
- edition = "2018"
- description = "Dioxus VirtualDOM renderer for the web browser using websys"
- license = "MIT/Apache-2.0"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com"
- documentation = "https://dioxuslabs.com"
- 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 = [
- "sledgehammer",
- "minimal_bindings",
- ] }
- js-sys = "0.3.56"
- wasm-bindgen = { workspace = true, features = ["enable-interning"] }
- wasm-bindgen-futures = "0.4.29"
- log = { workspace = true }
- rustc-hash = { workspace = true }
- console_error_panic_hook = { version = "0.1.7", optional = true }
- once_cell = "1.9.0"
- anyhow = "1.0.53"
- gloo-timers = { version = "0.2.3", features = ["futures"] }
- futures-util = { workspace = true, features = ["std", "async-await", "async-await-macro"] }
- smallstr = "0.2.0"
- futures-channel = { workspace = true }
- serde_json = { version = "1.0" }
- serde = { version = "1.0" }
- serde-wasm-bindgen = "0.4.5"
- async-trait = "0.1.58"
- [dependencies.web-sys]
- version = "0.3.56"
- features = [
- "Comment",
- "Attr",
- "Document",
- "Element",
- "CssStyleDeclaration",
- "HtmlElement",
- "HtmlInputElement",
- "HtmlSelectElement",
- "HtmlTextAreaElement",
- "HtmlFormElement",
- "EventTarget",
- "HtmlCollection",
- "Node",
- "NodeList",
- "Text",
- "Window",
- "Event",
- "MouseEvent",
- "InputEvent",
- "ClipboardEvent",
- "NamedNodeMap",
- "KeyboardEvent",
- "TouchEvent",
- "WheelEvent",
- "AnimationEvent",
- "TransitionEvent",
- "PointerEvent",
- "FocusEvent",
- "CompositionEvent",
- "ClipboardEvent",
- "DocumentType",
- "CharacterData",
- "SvgElement",
- "SvgAnimatedString",
- "HtmlOptionElement",
- "IdleDeadline",
- "WebSocket",
- "Location",
- "MessageEvent",
- "console",
- "FileList",
- "File",
- "FileReader"
- ]
- [features]
- default = ["panic_hook"]
- panic_hook = ["console_error_panic_hook"]
- hydrate = []
- [dev-dependencies]
- dioxus = { workspace = true }
- wasm-bindgen-test = "0.3.29"
- dioxus-ssr = { workspace = true}
- wasm-logger = "0.2.0"
- dioxus-web = { workspace = true, features = ["hydrate"] }
|