mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
86 lines
2.3 KiB
TOML
86 lines
2.3 KiB
TOML
[package]
|
|
name = "dioxus-web"
|
|
version = "0.2.1"
|
|
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 = { path = "../core", version = "^0.2.1", features = ["serialize"] }
|
|
dioxus-html = { path = "../html", version = "^0.2.1", features = ["wasm-bind"] }
|
|
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1", features = [
|
|
"web"
|
|
] }
|
|
dioxus-rsx-interpreter = { path = "../rsx_interpreter", version = "^0.1.0", optional = true }
|
|
|
|
js-sys = "0.3.56"
|
|
wasm-bindgen = { version = "0.2.79", features = ["enable-interning"] }
|
|
wasm-bindgen-futures = "0.4.29"
|
|
log = { version = "0.4.14" }
|
|
fxhash = "0.2.1"
|
|
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 = "0.3.19"
|
|
smallstr = "0.2.0"
|
|
serde-wasm-bindgen = "0.4.2"
|
|
futures-channel = "0.3.21"
|
|
serde_json = { version = "1.0", optional = true }
|
|
|
|
[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",
|
|
]
|
|
|
|
[features]
|
|
default = ["panic_hook"]
|
|
panic_hook = ["console_error_panic_hook"]
|
|
hot-reload = ["dioxus-rsx-interpreter", "web-sys/WebSocket", "web-sys/Location", "web-sys/MessageEvent", "web-sys/console", "serde_json"]
|
|
|
|
[dev-dependencies]
|
|
dioxus = { path = "../rsx-prelude", version = "^0.1.0", package = "rsx-prelude" }
|
|
wasm-bindgen-test = "0.3.29"
|
|
dioxus-ssr = { path = "../ssr" }
|
|
wasm-logger = "0.2.0"
|