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]
|
2024-03-09 02:59:00 +00:00
|
|
|
opt-level = 'z'
|
2023-04-07 02:53:52 +00:00
|
|
|
lto = true
|
2024-03-09 02:59:00 +00:00
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
2023-04-07 02:53:52 +00:00
|
|
|
|
2022-08-24 14:59:06 +00:00
|
|
|
[dependencies]
|
2023-03-22 22:21:53 +00:00
|
|
|
console_log = "1"
|
2022-08-24 14:59:06 +00:00
|
|
|
log = "0.4"
|
2024-03-09 02:59:00 +00:00
|
|
|
leptos = { path = "../../leptos", features = ["csr"] } #, "tracing"] }
|
|
|
|
routing = { path = "../../routing" } #, features = ["tracing"] }
|
|
|
|
#leptos_router = { path = "../../router", features = ["csr", "nightly"] }
|
2022-10-09 01:34:59 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-08-24 14:59:06 +00:00
|
|
|
futures = "0.3"
|
2024-03-09 02:59:00 +00:00
|
|
|
#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"
|