diff --git a/cuddle-leptos/Cargo.toml b/cuddle-leptos/Cargo.toml index 96d7848..5e7af31 100644 --- a/cuddle-leptos/Cargo.toml +++ b/cuddle-leptos/Cargo.toml @@ -9,11 +9,11 @@ lto = true opt-level = 'z' [workspace.dependencies] -leptos = { version = "0.6", features = ["nightly"] } -leptos_meta = { version = "0.6", features = ["nightly"] } -leptos_router = { version = "0.6", features = ["nightly"] } -leptos_axum = { version = "0.6" } -server_fn = { version = "0.6", features = [] } +leptos = { version = "0.7", features = ["nightly"] } +leptos_meta = { version = "0.7", features = ["nightly"] } +leptos_router = { version = "0.7", features = ["nightly"] } +leptos_axum = { version = "0.7" } +server_fn = { version = "0.7", features = [] } serde = { version = "1", features = ["derive"] } axum = "0.7" @@ -23,10 +23,10 @@ console_log = "1" http = "1" log = "0.4.21" simple_logger = "5.0.0" -thiserror = "1" +thiserror = "2" tokio = { version = "1.37.0", features = ["full"] } tower = { version = "0.5.0", features = ["full"] } -tower-http = { version = "0.5", features = ["full"] } +tower-http = { version = "0.6", features = ["full"] } wasm-bindgen = "=0.2.93" # See https://github.com/akesson/cargo-leptos for documentation of all the parameters. diff --git a/cuddle-rust-cli/crates/%%name%%/Cargo.toml b/cuddle-rust-cli/crates/%%name%%/Cargo.toml index cc374d6..ccf0674 100644 --- a/cuddle-rust-cli/crates/%%name%%/Cargo.toml +++ b/cuddle-rust-cli/crates/%%name%%/Cargo.toml @@ -14,6 +14,6 @@ dotenv.workspace = true axum.workspace = true serde = { version = "1.0.197", features = ["derive"] } -sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] } +sqlx = { version = "0.8.0", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] } uuid = { version = "1.7.0", features = ["v4"] } -tower-http = { version = "0.5.2", features = ["cors", "trace"] } +tower-http = { version = "0.6.0", features = ["cors", "trace"] } diff --git a/cuddle-rust-service/crates/%%name%%/Cargo.toml b/cuddle-rust-service/crates/%%name%%/Cargo.toml index 765a9ce..397f914 100644 --- a/cuddle-rust-service/crates/%%name%%/Cargo.toml +++ b/cuddle-rust-service/crates/%%name%%/Cargo.toml @@ -14,4 +14,4 @@ axum.workspace = true serde = { version = "1.0.197", features = ["derive"] } uuid = { version = "1.7.0", features = ["v4"] } -tower-http = { version = "0.5.2", features = ["cors", "trace"] } +tower-http = { version = "0.6.0", features = ["cors", "trace"] }