Skip to content

Commit

Permalink
chore: Update validator crate (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski authored Nov 4, 2024
1 parent 1898312 commit 5c65c69
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions examples/leptos-0.7-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/leptos-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/service/worker/sidekiq/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5c65c69

Please sign in to comment.