diff --git a/Cargo.lock b/Cargo.lock index a6b930be..80e3f70c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3354,12 +3354,6 @@ dependencies = [ "base64", ] -[[package]] -name = "rustversion" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" - [[package]] name = "ryu" version = "1.0.10" @@ -3549,14 +3543,13 @@ dependencies = [ [[package]] name = "serde_with" -version = "1.13.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b827f2113224f3f19a665136f006709194bdfdcb1fdc1e4b2b5cbac8e0cced54" +checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" dependencies = [ "base64", "chrono", "hex", - "rustversion", "serde", "serde_with_macros", ] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 79516b23..c01113a6 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.137" -serde_with = "1.13.0" +serde_with = "1.14.0" serde_urlencoded = "0.7.1" serde_json = "1.0.81" sqlx = "0.5.13" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index f0272c9c..b09fba6a 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -19,7 +19,7 @@ chrono = { version = "0.4.19", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } serde = { version = "1.0.137", features = ["derive"] } -serde_with = { version = "1.13.0", features = ["hex", "chrono"] } +serde_with = { version = "1.14.0", features = ["hex", "chrono"] } serde_json = "1.0.81" sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] } lettre = { version = "0.10.0-rc.6", default-features = false, features = ["serde", "builder"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 15819f73..8f6cf9f0 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -32,7 +32,7 @@ sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization serde = { version = "1.0.137", features = ["derive"] } -serde_with = { version = "1.13.0", features = ["hex", "chrono"] } +serde_with = { version = "1.14.0", features = ["hex", "chrono"] } serde_json = "1.0.81" serde_urlencoded = "0.7.1" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 7758433e..f7946cd2 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -26,7 +26,7 @@ schemars = "0.8.10" sec1 = "0.3.0" serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" -serde_with = { version = "1.13.0", features = ["base64"] } +serde_with = { version = "1.14.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.5.0" thiserror = "1.0.31" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index e8768e16..e76cb156 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.2.2", features = ["serde"] } parse-display = "0.5.5" indoc = "1.0.6" -serde_with = { version = "1.13.0", features = ["chrono"] } +serde_with = { version = "1.14.0", features = ["chrono"] } chrono = "0.4.19" sha2 = "0.10.2" data-encoding = "2.3.2" diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index 42ec9250..fe906d34 100644 --- a/crates/router/Cargo.toml +++ b/crates/router/Cargo.toml @@ -9,5 +9,5 @@ license = "Apache-2.0" axum = { version = "0.5.6", default-features = false } serde = { version = "1.0.137", features = ["derive"] } serde_urlencoded = "0.7.1" -serde_with = "1.13.0" +serde_with = "1.14.0" url = "2.2.2"