leptos/examples/router/Cargo.toml

28 lines
720 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]
opt-level = 'z'
2023-04-07 02:53:52 +00:00
lto = true
codegen-units = 1
panic = "abort"
2023-04-07 02:53:52 +00:00
2022-08-24 14:59:06 +00:00
[dependencies]
console_log = "1"
2022-08-24 14:59:06 +00:00
log = "0.4"
leptos = { path = "../../leptos", features = ["csr"] } #, "tracing"] }
routing = { path = "../../routing" } #, features = ["tracing"] }
#leptos_router = { path = "../../router", features = ["csr", "nightly"] }
serde = { version = "1", features = ["derive"] }
2022-08-24 14:59:06 +00:00
futures = "0.3"
#console_error_panic_hook = "0.1.7"
#tracing-subscriber = "0.3.18"
#tracing-subscriber-wasm = "0.1.0"
#tracing = "0.1.40"
#leptos_meta = { path = "../../meta", features = ["csr", "nightly"] }
2022-08-24 14:59:06 +00:00
[dev-dependencies]
wasm-bindgen-test = "0.3.0"