diff --git a/Cargo.lock b/Cargo.lock index 36e0a281..1bc5b5ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3546,9 +3546,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.79" +version = "1.0.80" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" +checksum = "f972498cf015f7c0746cac89ebe1d6ef10c293b94175a243a2d9442c163d9944" dependencies = [ "itoa 1.0.1", "ryu", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index a0f02dfd..16ccc86d 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -21,7 +21,7 @@ rand = "0.8.5" serde = "1.0.136" serde_with = "1.13.0" serde_urlencoded = "0.7.1" -serde_json = "1.0.79" +serde_json = "1.0.80" sqlx = "0.5.13" thiserror = "1.0.31" tokio = "1.18.0" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index c3585e04..9538c898 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -15,7 +15,7 @@ schemars = { version = "0.8.8", features = ["url", "chrono"] } tower = { version = "0.4.12", features = ["full"] } hyper = { version = "0.14.18", features = ["full"] } serde_yaml = "0.8.23" -serde_json = "1.0.79" +serde_json = "1.0.80" url = "2.2.2" argon2 = { version = "0.4.0", features = ["password-hash"] } reqwest = { version = "0.11.10", features = ["rustls-tls"], default-features = false, optional = true } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index b8018c86..5c35953e 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -20,7 +20,7 @@ url = { version = "2.2.2", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } serde_with = { version = "1.13.0", features = ["hex", "chrono"] } -serde_json = "1.0.79" +serde_json = "1.0.80" 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 be68ef4e..e18e1eb5 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -33,7 +33,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.13.0", features = ["hex", "chrono"] } -serde_json = "1.0.79" +serde_json = "1.0.80" serde_urlencoded = "0.7.1" # Password hashing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 1724840e..2d7880c5 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -20,7 +20,7 @@ opentelemetry-http = "0.6.0" opentelemetry-semantic-conventions = "0.9.0" rustls = "0.20.4" serde = "1.0.136" -serde_json = "1.0.79" +serde_json = "1.0.80" thiserror = "1.0.31" tokio = { version = "1.18.0", features = ["sync", "parking_lot"] } tower = { version = "0.4.12", features = ["timeout", "limit"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index fec557dd..d6007414 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -25,7 +25,7 @@ rsa = "0.6.1" schemars = "0.8.8" sec1 = "0.2.1" serde = { version = "1.0.136", features = ["derive"] } -serde_json = "1.0.79" +serde_json = "1.0.80" serde_with = { version = "1.13.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.4.0" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index aa8ea8d0..a79ef370 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] http = "0.2.7" serde = "1.0.136" -serde_json = "1.0.79" +serde_json = "1.0.80" language-tags = { version = "0.3.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } parse-display = "0.5.5" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 13a36152..49e7a5c3 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -10,7 +10,7 @@ tokio = "1.18.0" sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] } chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } -serde_json = "1.0.79" +serde_json = "1.0.80" thiserror = "1.0.31" anyhow = "1.0.57" tracing = "0.1.34" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 3f045f03..754af345 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -17,7 +17,7 @@ thiserror = "1.0.31" tera = "1.15.0" serde = { version = "1.0.136", features = ["derive"] } -serde_json = "1.0.79" +serde_json = "1.0.80" serde_urlencoded = "0.7.1" url = "2.2.2"