diff --git a/Cargo.toml b/Cargo.toml index b464405..d19373b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -115,7 +115,7 @@ convert_case = "0.6.0" const_format = "0.2.32" typed-builder = { workspace = true } num-traits = "0.2.14" -validator = { version = "0.18.0", features = ["derive"] } +validator = { version = "0.19.0", features = ["derive"] } thiserror = { workspace = true } # Add latest version of `time` to resolve a build error on nightly # https://github.com/time-rs/time/issues/681 diff --git a/examples/leptos-0.7-ssr/Cargo.toml b/examples/leptos-0.7-ssr/Cargo.toml index d5c3e6f..fcab290 100644 --- a/examples/leptos-0.7-ssr/Cargo.toml +++ b/examples/leptos-0.7-ssr/Cargo.toml @@ -39,15 +39,15 @@ axum = { workspace = true, optional = true } serde = { workspace = true, features = ["derive"] } # Leptos -leptos = "0.7.0-gamma3" +leptos = "0.7.0-rc1" console_error_panic_hook = { version = "0.1", optional = true } -leptos_axum = { version = "0.7.0-gamma3", optional = true } -leptos_meta = { version = "0.7.0-gamma3" } -leptos_router = { version = "0.7.0-gamma3" } -leptos_config = { version = "0.7.0-gamma3" } +leptos_axum = { version = "0.7.0-rc1", optional = true } +leptos_meta = { version = "0.7.0-rc1" } +leptos_router = { version = "0.7.0-rc1" } +leptos_config = { version = "0.7.0-rc1" } tower = { workspace = true, features = ["full"], optional = true } tower-http = { workspace = true, features = ["full"], optional = true } -wasm-bindgen = { version = "=0.2.93", optional = true } +wasm-bindgen = { version = "0.2.95", optional = true } # Defines a size-optimized profile for the WASM bundle in release mode # Commented out here because profiles are ignored for packages that aren't the workspace root diff --git a/examples/leptos-ssr/Cargo.toml b/examples/leptos-ssr/Cargo.toml index 14cd562..c72bd91 100644 --- a/examples/leptos-ssr/Cargo.toml +++ b/examples/leptos-ssr/Cargo.toml @@ -45,7 +45,7 @@ leptos_router = { version = "0.6.14" } leptos_config = { version = "0.6.14" } tower = { workspace = true, features = ["full"], optional = true } tower-http = { workspace = true, features = ["full"], optional = true } -wasm-bindgen = "=0.2.93" +wasm-bindgen = "0.2.95" # Defines a size-optimized profile for the WASM bundle in release mode # Commented out here because profiles are ignored for packages that aren't the workspace root diff --git a/src/service/worker/sidekiq/service.rs b/src/service/worker/sidekiq/service.rs index effae80..a7e08e2 100644 --- a/src/service/worker/sidekiq/service.rs +++ b/src/service/worker/sidekiq/service.rs @@ -178,7 +178,7 @@ trait RedisCommands { } #[async_trait] -impl<'a> RedisCommands for PooledConnection<'a, RedisConnectionManager> { +impl RedisCommands for PooledConnection<'_, RedisConnectionManager> { async fn zrange( &mut self, key: String,