mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
32 lines
871 B
TOML
32 lines
871 B
TOML
[package]
|
|
name = "dioxus-router"
|
|
version = "0.2.3"
|
|
edition = "2018"
|
|
description = "Cross-platform router for Dioxus apps"
|
|
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"]
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.66"
|
|
async-rwlock = "1.3.0"
|
|
dioxus = { path="../dioxus" }
|
|
dioxus-router-core = { path = "../router-core"}
|
|
futures-channel = "0.3.25"
|
|
futures-util = "0.3.25"
|
|
log = "0.4.17"
|
|
thiserror = "1.0.37"
|
|
|
|
# for wasm
|
|
|
|
[features]
|
|
regex = ["dioxus-router-core/regex"]
|
|
serde = ["dioxus-router-core/serde"]
|
|
|
|
[dev-dependencies]
|
|
dioxus = { path = "../dioxus" }
|
|
dioxus-desktop = { path = "../desktop" }
|
|
dioxus-ssr = { path = "../ssr" }
|