Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update validator crate #497

Merged
merged 4 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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