diff --git a/Cargo.lock b/Cargo.lock index 2a34cf08..34a0e4d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3543,9 +3543,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "1.12.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "946fa04a8ac43ff78a1f4b811990afb9ddbdf5890b46d6dda0ba1998230138b7" +checksum = "b827f2113224f3f19a665136f006709194bdfdcb1fdc1e4b2b5cbac8e0cced54" dependencies = [ "base64", "chrono", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 16c49979..d5639fee 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -19,7 +19,7 @@ http-body = "0.4.4" mime = "0.3.16" rand = "0.8.5" serde = "1.0.136" -serde_with = "1.12.1" +serde_with = "1.13.0" serde_urlencoded = "0.7.1" serde_json = "1.0.79" sqlx = "0.5.13" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 93b40a56..24d09aab 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.136", features = ["derive"] } -serde_with = { version = "1.12.1", features = ["hex", "chrono"] } +serde_with = { version = "1.13.0", features = ["hex", "chrono"] } serde_json = "1.0.79" sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] } lettre = { version = "0.10.0-rc.5", default-features = false, features = ["serde", "builder"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 77ea766f..9d3fe8b0 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -34,7 +34,7 @@ sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization serde = { version = "1.0.136", features = ["derive"] } -serde_with = { version = "1.12.1", features = ["hex", "chrono"] } +serde_with = { version = "1.13.0", features = ["hex", "chrono"] } serde_json = "1.0.79" serde_urlencoded = "0.7.1" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 4a35ae98..b8856b3a 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -26,7 +26,7 @@ schemars = "0.8.8" sec1 = "0.2.1" serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" -serde_with = { version = "1.12.1", features = ["base64"] } +serde_with = { version = "1.13.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.4.0" thiserror = "1.0.30" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index eccb5639..1b5c6d1c 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.4" -serde_with = { version = "1.12.1", features = ["chrono"] } +serde_with = { version = "1.13.0", features = ["chrono"] } chrono = "0.4.19" sha2 = "0.10.2" data-encoding = "2.3.2"