2021-01-15 01:56:28 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-web"
|
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-03 03:57:20 +00:00
|
|
|
version = "0.2.1"
|
2021-12-15 21:04:27 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-01-15 01:56:28 +00:00
|
|
|
edition = "2018"
|
2021-02-28 22:22:23 +00:00
|
|
|
description = "Dioxus VirtualDOM renderer for the web browser using websys"
|
|
|
|
license = "MIT/Apache-2.0"
|
2021-12-15 21:04:27 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
documentation = "https://dioxuslabs.com"
|
2021-12-15 21:06:13 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
2021-01-15 01:56:28 +00:00
|
|
|
|
2021-01-16 06:30:48 +00:00
|
|
|
[dependencies]
|
2022-05-17 16:30:36 +00:00
|
|
|
dioxus-core = { path = "../core", version = "^0.2.1", features = ["serialize"] }
|
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-03 03:57:20 +00:00
|
|
|
dioxus-html = { path = "../html", version = "^0.2.1", features = ["wasm-bind"] }
|
|
|
|
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1", features = [
|
2022-05-05 20:50:33 +00:00
|
|
|
"web"
|
2022-03-17 14:51:23 +00:00
|
|
|
] }
|
2022-03-09 19:24:05 +00:00
|
|
|
|
2022-02-04 06:56:54 +00:00
|
|
|
js-sys = "0.3.56"
|
|
|
|
wasm-bindgen = { version = "0.2.79", features = ["enable-interning"] }
|
|
|
|
wasm-bindgen-futures = "0.4.29"
|
2022-11-17 06:22:13 +00:00
|
|
|
log = "0.4.14"
|
2022-10-13 01:27:26 +00:00
|
|
|
rustc-hash = "1.1.0"
|
2022-01-24 07:57:56 +00:00
|
|
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
2022-02-04 06:56:54 +00:00
|
|
|
once_cell = "1.9.0"
|
|
|
|
anyhow = "1.0.53"
|
|
|
|
gloo-timers = { version = "0.2.3", features = ["futures"] }
|
|
|
|
futures-util = "0.3.19"
|
2021-11-19 05:49:04 +00:00
|
|
|
smallstr = "0.2.0"
|
2022-02-15 16:03:13 +00:00
|
|
|
futures-channel = "0.3.21"
|
2022-09-30 19:03:06 +00:00
|
|
|
serde_json = { version = "1.0" }
|
2022-02-01 20:44:08 +00:00
|
|
|
|
2021-01-16 06:30:48 +00:00
|
|
|
[dependencies.web-sys]
|
2022-02-04 06:56:54 +00:00
|
|
|
version = "0.3.56"
|
2021-01-16 06:30:48 +00:00
|
|
|
features = [
|
|
|
|
"Comment",
|
2021-07-05 05:11:49 +00:00
|
|
|
"Attr",
|
2021-01-16 06:30:48 +00:00
|
|
|
"Document",
|
|
|
|
"Element",
|
2021-08-06 02:23:41 +00:00
|
|
|
"CssStyleDeclaration",
|
2021-01-16 06:30:48 +00:00
|
|
|
"HtmlElement",
|
2021-02-26 17:58:03 +00:00
|
|
|
"HtmlInputElement",
|
2021-06-17 03:37:55 +00:00
|
|
|
"HtmlSelectElement",
|
|
|
|
"HtmlTextAreaElement",
|
2022-01-22 19:53:59 +00:00
|
|
|
"HtmlFormElement",
|
2021-01-16 06:30:48 +00:00
|
|
|
"EventTarget",
|
|
|
|
"HtmlCollection",
|
|
|
|
"Node",
|
|
|
|
"NodeList",
|
|
|
|
"Text",
|
|
|
|
"Window",
|
|
|
|
"Event",
|
|
|
|
"MouseEvent",
|
|
|
|
"InputEvent",
|
2021-04-02 01:44:18 +00:00
|
|
|
"ClipboardEvent",
|
2021-07-05 05:11:49 +00:00
|
|
|
"NamedNodeMap",
|
2021-04-02 01:44:18 +00:00
|
|
|
"KeyboardEvent",
|
|
|
|
"TouchEvent",
|
|
|
|
"WheelEvent",
|
|
|
|
"AnimationEvent",
|
|
|
|
"TransitionEvent",
|
|
|
|
"PointerEvent",
|
|
|
|
"FocusEvent",
|
|
|
|
"CompositionEvent",
|
2021-07-31 02:14:06 +00:00
|
|
|
"ClipboardEvent",
|
2021-02-13 08:19:35 +00:00
|
|
|
"DocumentType",
|
2021-02-17 15:53:55 +00:00
|
|
|
"CharacterData",
|
2021-07-21 21:05:48 +00:00
|
|
|
"SvgElement",
|
|
|
|
"SvgAnimatedString",
|
2021-02-26 17:58:03 +00:00
|
|
|
"HtmlOptionElement",
|
2021-09-22 08:11:27 +00:00
|
|
|
"IdleDeadline",
|
2022-09-30 19:03:06 +00:00
|
|
|
"WebSocket",
|
|
|
|
"Location",
|
|
|
|
"MessageEvent",
|
|
|
|
"console",
|
2021-05-16 06:55:16 +00:00
|
|
|
]
|
2021-02-15 19:14:28 +00:00
|
|
|
|
2022-01-24 07:57:56 +00:00
|
|
|
[features]
|
2022-11-17 06:22:13 +00:00
|
|
|
default = ["panic_hook", "hydrate"]
|
2022-01-24 07:57:56 +00:00
|
|
|
panic_hook = ["console_error_panic_hook"]
|
2022-09-30 19:03:06 +00:00
|
|
|
hot-reload = ["dioxus/hot-reload"]
|
2022-11-17 06:22:13 +00:00
|
|
|
hydrate = []
|
2021-11-19 05:49:04 +00:00
|
|
|
|
2022-01-07 05:33:09 +00:00
|
|
|
[dev-dependencies]
|
2022-07-09 19:15:20 +00:00
|
|
|
dioxus = { path = "../dioxus" }
|
2022-02-04 06:56:54 +00:00
|
|
|
wasm-bindgen-test = "0.3.29"
|
2022-01-07 05:33:09 +00:00
|
|
|
dioxus-ssr = { path = "../ssr" }
|
2022-02-16 19:40:45 +00:00
|
|
|
wasm-logger = "0.2.0"
|
2022-11-17 06:22:13 +00:00
|
|
|
dioxus-web = { path = "." }
|