dioxus/packages/router/Cargo.toml

53 lines
1.6 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"
2023-08-01 00:30:18 +00:00
authors = ["Jonathan Kelley", "Evan Almloff"]
version = { workspace = true }
2024-01-19 03:27:55 +00:00
edition = "2021"
description = "Cross-platform router for Dioxus apps"
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 }
2024-11-01 23:11:24 +00:00
dioxus-history = { workspace = true }
dioxus-router-macro = { workspace = true }
2023-09-06 22:47:33 +00:00
tracing = { workspace = true }
urlencoding = "2.1.3"
url = "2.3.1"
dioxus-cli-config = { workspace = true }
rustversion = "1.0.17"
2021-11-03 04:35:56 +00:00
[features]
2024-01-18 20:41:19 +00:00
default = []
2021-11-19 05:49:04 +00:00
[dev-dependencies]
axum = { workspace = true, features = ["ws"] }
2024-03-18 09:02:31 +00:00
dioxus = { workspace = true, features = ["router"] }
dioxus-ssr = { workspace = true }
criterion = { workspace = true, features = ["async_tokio", "html_reports"] }
2024-11-01 23:11:24 +00:00
ciborium = { workspace = true }
base64 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
2022-12-13 20:38:27 +00:00
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
2024-11-01 23:11:24 +00:00
# Most of the examples live in the workspace. We include some here so that docs.rs can scrape our examples for better inline docs
[[example]]
name = "hash_fragment_state"
path = "../../examples/hash_fragment_state.rs"
doc-scrape-examples = true
[[example]]
name = "query_segment_search"
path = "../../examples/query_segment_search.rs"
doc-scrape-examples = true
[[example]]
name = "simple_router"
path = "../../examples/simple_router.rs"
doc-scrape-examples = true