dioxus/packages/router-core/Cargo.toml

28 lines
903 B
TOML
Raw Normal View History

2022-12-03 20:49:16 +00:00
[package]
name = "dioxus-router-core"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-rwlock = "1.3.0"
either = "1.8.0"
futures-channel = "0.3.25"
futures-util = "0.3.25"
2022-12-15 13:46:40 +00:00
gloo = { version = "0.8.0", optional = true }
log = "0.4.17"
2022-12-03 20:49:16 +00:00
regex = { version = "1.6.0", optional = true }
2022-12-15 19:09:53 +00:00
serde = { version = "1.0.147", optional = true, features = ["derive"] }
serde-wasm-bindgen = { version = "0.4.5", optional = true }
2022-12-03 20:49:16 +00:00
serde_urlencoded = { version = "0.7.1", optional = true }
url = "2.3.1"
urlencoding = "2.1.2"
2022-12-15 14:45:19 +00:00
wasm-bindgen = { version = "0.2.83", optional = true }
2022-12-15 19:09:53 +00:00
web-sys = { version = "0.3.60", optional = true, features = ["ScrollRestoration"]}
2022-12-03 20:49:16 +00:00
[features]
regex = ["dep:regex"]
serde = ["dep:serde", "serde_urlencoded"]
2022-12-15 19:09:53 +00:00
web = ["gloo", "dep:serde", "serde-wasm-bindgen", "wasm-bindgen", "web-sys"]