dioxus/packages/router/Cargo.toml

53 lines
1.4 KiB
TOML
Raw Normal View History

2021-11-03 04:35:56 +00:00
[package]
2022-02-01 20:13:18 +00:00
name = "dioxus-router"
version = "0.1.1"
2022-02-01 19:40:29 +00:00
edition = "2018"
2022-02-01 20:13:18 +00:00
description = "Dioxus VirtualDOM renderer for the web browser using websys"
2022-02-01 19:40:29 +00:00
license = "MIT/Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
2022-02-01 20:13:18 +00:00
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react", "wasm"]
2021-11-03 04:35:56 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-02-01 20:13:18 +00:00
dioxus-core = { path = "../core", version = "^0.1.9", default-features = false }
dioxus-html = { path = "../html", version = "^0.1.6", default-features = false }
dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
2021-11-03 04:35:56 +00:00
serde = "1"
2022-02-01 19:40:29 +00:00
url = "2.2.2"
2022-02-01 20:13:18 +00:00
serde_urlencoded = "0.7"
2021-12-19 04:03:59 +00:00
# for wasm
2022-02-01 20:13:18 +00:00
web-sys = { version = "0.3", features = [
"Attr",
"Document",
"History",
"HtmlBaseElement",
"Event",
"NamedNodeMap",
"Url",
"UrlSearchParams",
"Window",
], optional = true }
wasm-bindgen = { version = "0.2", optional = true }
js-sys = { version = "0.3", optional = true }
gloo = { version = "0.5", optional = true }
log = "0.4.14"
2022-02-01 20:13:18 +00:00
2021-11-03 04:35:56 +00:00
[features]
default = ["derive", "web"]
2022-02-01 20:13:18 +00:00
web = ["web-sys", "gloo", "js-sys", "wasm-bindgen"]
2021-11-03 04:35:56 +00:00
desktop = []
mobile = []
2022-02-01 20:13:18 +00:00
derive = []
2021-11-19 05:49:04 +00:00
[dev-dependencies]
console_error_panic_hook = "0.1.7"
2022-02-01 20:13:18 +00:00
dioxus-web = { path = "../web" }
2021-11-19 05:49:04 +00:00
log = "0.4.14"
wasm-logger = "0.2.0"
2022-02-01 20:13:18 +00:00
wasm-bindgen-test = "0.3"