leptos/examples/router/Cargo.toml

26 lines
635 B
TOML
Raw Normal View History

2022-08-24 14:59:06 +00:00
[package]
2022-10-18 14:15:42 +00:00
name = "router"
2022-08-24 14:59:06 +00:00
version = "0.1.0"
edition = "2021"
2023-04-07 02:53:52 +00:00
[profile.release]
codegen-units = 1
lto = true
2022-08-24 14:59:06 +00:00
[dependencies]
console_log = "1"
2022-08-24 14:59:06 +00:00
log = "0.4"
2024-03-06 14:08:09 +00:00
leptos = { path = "../../leptos", features = ["csr", "tracing"] }
routing = { path = "../../routing", features = ["tracing"] }
#leptos_router = { path = "../../router", features = ["csr"] }
serde = { version = "1", features = ["derive"] }
2022-08-24 14:59:06 +00:00
futures = "0.3"
console_error_panic_hook = "0.1.7"
2024-03-06 14:08:09 +00:00
tracing-subscriber = "0.3.18"
tracing-subscriber-wasm = "0.1.0"
tracing = "0.1.40"
#leptos_meta = { path = "../../meta", features = ["csr"] }
2022-08-24 14:59:06 +00:00
[dev-dependencies]
wasm-bindgen-test = "0.3.0"