2021-11-03 04:35:56 +00:00
|
|
|
[package]
|
2022-02-01 20:13:18 +00:00
|
|
|
name = "dioxus-router"
|
2023-08-01 00:30:18 +00:00
|
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2022-02-01 19:40:29 +00:00
|
|
|
edition = "2018"
|
2022-03-09 19:24:05 +00:00
|
|
|
description = "Cross-platform router for Dioxus apps"
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-02-01 19:40:29 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
2022-02-01 20:13:18 +00:00
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
2021-11-03 04:35:56 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-16 01:14:11 +00:00
|
|
|
dioxus-lib = { workspace = true }
|
2023-06-28 15:56:07 +00:00
|
|
|
dioxus-router-macro = { workspace = true }
|
2023-05-23 16:22:57 +00:00
|
|
|
gloo = { version = "0.8.0", optional = true }
|
2023-09-06 22:47:33 +00:00
|
|
|
tracing = { workspace = true }
|
2023-09-06 17:56:43 +00:00
|
|
|
urlencoding = "2.1.3"
|
2023-06-28 15:56:07 +00:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2023-10-26 19:19:51 +00:00
|
|
|
serde_json = { version = "1.0.91", optional = true }
|
2023-05-22 21:42:32 +00:00
|
|
|
url = "2.3.1"
|
2023-06-28 15:56:07 +00:00
|
|
|
wasm-bindgen = { workspace = true, optional = true }
|
2023-07-20 17:55:52 +00:00
|
|
|
web-sys = { version = "0.3.60", optional = true, features = [
|
|
|
|
"ScrollRestoration",
|
|
|
|
] }
|
2023-06-01 16:03:44 +00:00
|
|
|
js-sys = { version = "0.3.63", optional = true }
|
|
|
|
gloo-utils = { version = "0.1.6", optional = true }
|
2023-10-26 19:19:51 +00:00
|
|
|
dioxus-liveview = { workspace = true, optional = true }
|
2023-06-28 15:56:07 +00:00
|
|
|
dioxus-ssr = { workspace = true, optional = true }
|
|
|
|
tokio = { workspace = true, features = ["full"], optional = true }
|
2023-11-14 22:49:06 +00:00
|
|
|
dioxus-cli-config.workspace = true
|
2021-11-03 04:35:56 +00:00
|
|
|
|
|
|
|
[features]
|
2023-06-24 20:21:12 +00:00
|
|
|
default = ["web"]
|
|
|
|
ssr = ["dioxus-ssr", "tokio"]
|
2023-10-26 19:19:51 +00:00
|
|
|
liveview = ["dioxus-liveview", "tokio", "dep:serde", "serde_json"]
|
2022-03-03 04:45:36 +00:00
|
|
|
wasm_test = []
|
2023-11-21 20:46:47 +00:00
|
|
|
serde = ["dep:serde", "gloo-utils?/serde"]
|
2023-06-01 16:03:44 +00:00
|
|
|
web = ["gloo", "web-sys", "wasm-bindgen", "gloo-utils", "js-sys"]
|
2021-11-19 05:49:04 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-26 19:19:51 +00:00
|
|
|
axum = { version = "0.6.1", features = ["ws"] }
|
2022-12-09 00:15:04 +00:00
|
|
|
dioxus = { path = "../dioxus" }
|
2023-10-26 19:19:51 +00:00
|
|
|
dioxus-liveview = { workspace = true, features = ["axum"] }
|
2022-12-13 09:46:30 +00:00
|
|
|
dioxus-ssr = { path = "../ssr" }
|
2023-07-27 04:02:39 +00:00
|
|
|
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
|
2022-12-13 20:38:27 +00:00
|
|
|
|
2023-06-24 21:07:48 +00:00
|
|
|
[[example]]
|
|
|
|
name = "static_generation"
|
|
|
|
required-features = ["ssr"]
|
2022-03-02 22:57:57 +00:00
|
|
|
|
2023-06-22 19:13:51 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "incremental"
|
2023-06-24 21:07:48 +00:00
|
|
|
required-features = ["ssr"]
|
2023-06-22 19:13:51 +00:00
|
|
|
harness = false
|
2022-12-15 13:46:40 +00:00
|
|
|
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
|
|
|
|
dioxus-desktop = { path = "../desktop" }
|
2022-03-02 22:57:57 +00:00
|
|
|
|
2022-12-15 13:46:40 +00:00
|
|
|
[target.'cfg(target_family = "wasm")'.dev-dependencies]
|
2022-12-16 11:55:50 +00:00
|
|
|
console_error_panic_hook = "0.1.7"
|
2023-08-01 01:49:54 +00:00
|
|
|
dioxus-router = { path = ".", features = ["web"] }
|
2023-06-28 15:56:07 +00:00
|
|
|
dioxus-web = { workspace = true }
|
2022-12-16 11:33:46 +00:00
|
|
|
gloo = "0.8.0"
|
|
|
|
wasm-bindgen-test = "0.3.33"
|