diff --git a/Cargo.lock b/Cargo.lock index fd603f69..2b793ccb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4087,9 +4087,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89df7a26519371a3cce44fbb914c2819c84d9b897890987fa3ab096491cc0ea8" +checksum = "368f2d60d049ea019a84dcd6687b0d1e0030fe663ae105039bdf967ed5e6a9a7" dependencies = [ "base64", "chrono", @@ -4103,9 +4103,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de337f322382fcdfbb21a014f7c224ee041a23785651db67b9827403178f698f" +checksum = "1ccadfacf6cf10faad22bbadf55986bdd0856edfb5d9210aa1dcf1f516e84e93" dependencies = [ "darling", "proc-macro2", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index cbc23f70..7e9ad6a1 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -19,7 +19,7 @@ http-body = "0.4.5" mime = "0.3.16" rand = "0.8.5" serde = "1.0.144" -serde_with = "2.0.0" +serde_with = "2.0.1" serde_urlencoded = "0.7.1" serde_json = "1.0.85" sqlx = "0.6.1" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 89a50c96..d04e75a5 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -19,7 +19,7 @@ chrono = { version = "0.4.22", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] } serde = { version = "1.0.144", features = ["derive"] } -serde_with = { version = "2.0.0", features = ["hex", "chrono"] } +serde_with = { version = "2.0.1", features = ["hex", "chrono"] } serde_json = "1.0.85" sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] } lettre = { version = "0.10.1", default-features = false, features = ["serde", "builder"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 1133d1f3..97ef4b8c 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -32,7 +32,7 @@ sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization serde = { version = "1.0.144", features = ["derive"] } -serde_with = { version = "2.0.0", features = ["hex", "chrono"] } +serde_with = { version = "2.0.1", features = ["hex", "chrono"] } serde_json = "1.0.85" serde_urlencoded = "0.7.1" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index fc53624c..7fe14e72 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -23,7 +23,7 @@ schemars = "0.8.10" sec1 = "0.3.0" serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.85" -serde_with = { version = "2.0.0", features = ["base64"] } +serde_with = { version = "2.0.1", features = ["base64"] } sha2 = "0.10.5" signature = "1.6.0" thiserror = "1.0.34" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 4f1dcf73..52b2532c 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -13,7 +13,7 @@ language-tags = { version = "0.3.2", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] } parse-display = "0.6.0" indoc = "1.0.7" -serde_with = { version = "2.0.0", features = ["chrono"] } +serde_with = { version = "2.0.1", features = ["chrono"] } chrono = "0.4.22" sha2 = "0.10.5" data-encoding = "2.3.2" diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index 38b0e06a..0ba32e19 100644 --- a/crates/router/Cargo.toml +++ b/crates/router/Cargo.toml @@ -9,5 +9,5 @@ license = "Apache-2.0" axum = { version = "0.6.0-rc.1", default-features = false } serde = { version = "1.0.144", features = ["derive"] } serde_urlencoded = "0.7.1" -serde_with = "2.0.0" +serde_with = "2.0.1" url = "2.3.1"