diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-03-21 23:15:01 -0600 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-03-21 23:15:01 -0600 |
commit | b18f08e8899b5a98dd3e1f8439ad812951a04cd9 (patch) | |
tree | 613dac28974eee66b193f48402c3ecb9b0663c88 /Cargo.toml | |
parent | 2683366e92676abf687c37f4afea4d4d721cb059 (diff) |
Container
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml index 2fa7fd9..df8d2a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,13 +7,13 @@ edition = "2021" crate-type = ["cdylib", "rlib"] [dependencies] -leptos = { version = "0.7.0", features = ["nightly", "islands"] } -leptos_router = { version = "0.7.0", features = ["nightly"] } +leptos = { version = "0.7.0", features = ["islands"] } +leptos_router = { version = "0.7.0" } axum = { version = "0.7", optional = true } console_error_panic_hook = { version = "0.1", optional = true} leptos_axum = { version = "0.7.0", optional = true } leptos_meta = { version = "0.7.0" } -tokio = { version = "1", features = ["rt-multi-thread"], optional = true } +tokio = { version = "1", features = ["rt-multi-thread", "signal"], optional = true } wasm-bindgen = { version = "=0.2.100", optional = true } [features] |