dioxus/packages/web/Cargo.toml

84 lines
2.1 KiB
TOML
Raw Normal View History

2021-01-15 01:56:28 +00:00
[package]
name = "dioxus-web"
version = { workspace = true }
2021-12-15 21:04:27 +00:00
authors = ["Jonathan Kelley"]
2024-01-19 03:27:55 +00:00
edition = "2021"
description = "Web renderer for Dioxus using websys"
license = "MIT OR Apache-2.0"
2021-12-15 21:04:27 +00:00
repository = "https://github.com/DioxusLabs/dioxus/"
2023-09-16 17:03:27 +00:00
homepage = "https://dioxuslabs.com/learn/0.4/getting_started/wasm"
2021-12-15 21:06:13 +00:00
keywords = ["dom", "ui", "gui", "react", "wasm"]
2021-01-15 01:56:28 +00:00
[dependencies]
2023-06-19 19:29:11 +00:00
dioxus-core = { workspace = true, features = ["serialize"] }
dioxus-html = { workspace = true, features = ["wasm-bind"] }
2023-06-19 19:29:11 +00:00
dioxus-interpreter-js = { workspace = true, features = [
"minimal_bindings",
2024-01-19 03:27:55 +00:00
"webonly",
] }
2024-02-02 20:47:59 +00:00
generational-box = { workspace = true }
2022-02-04 06:56:54 +00:00
js-sys = "0.3.56"
wasm-bindgen = { workspace = true }
2022-02-04 06:56:54 +00:00
wasm-bindgen-futures = "0.4.29"
2023-09-06 22:47:33 +00:00
tracing = { workspace = true }
2023-06-19 19:29:11 +00:00
rustc-hash = { workspace = true }
2022-01-24 07:57:56 +00:00
console_error_panic_hook = { version = "0.1.7", optional = true }
2023-06-19 19:57:58 +00:00
futures-util = { workspace = true, features = ["std", "async-await", "async-await-macro"] }
2023-06-19 19:29:11 +00:00
futures-channel = { workspace = true }
serde_json = { version = "1.0" }
2022-12-08 16:44:56 +00:00
serde = { version = "1.0" }
serde-wasm-bindgen = { version = "0.5.0", optional = true }
async-trait = { version = "0.1.58", optional = true }
[dependencies.web-sys]
2022-02-04 06:56:54 +00:00
version = "0.3.56"
features = [
"Document",
"HtmlElement",
2021-02-26 17:58:03 +00:00
"HtmlInputElement",
2021-06-17 03:37:55 +00:00
"HtmlSelectElement",
"HtmlTextAreaElement",
"HtmlFormElement",
"Text",
"Window",
"DataTransfer",
"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]
default = ["panic_hook", "mounted", "file_engine", "hot_reload", "eval"]
2022-01-24 07:57:56 +00:00
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",
"async-trait"
]
hot_reload = [
"web-sys/MessageEvent",
"web-sys/WebSocket",
"web-sys/Location",
]
eval = [
"dioxus-html/eval",
"serde-wasm-bindgen",
"async-trait"
]
2021-11-19 05:49:04 +00:00
2022-01-07 05:33:09 +00:00
[dev-dependencies]
2023-06-19 19:29:11 +00:00
dioxus = { workspace = true }
2022-02-04 06:56:54 +00:00
wasm-bindgen-test = "0.3.29"
2024-01-15 19:23:35 +00:00
dioxus-ssr = { workspace = true, default-features = false }
2023-04-09 14:54:18 +00:00
gloo-timers = "0.2.3"
gloo-dialogs = "0.1.1"
dioxus-web = { path = ".", features = ["hydrate"] }
2023-09-12 14:07:57 +00:00
tracing-wasm = "0.2.1"