diff --git a/Cargo.lock b/Cargo.lock index fec1d945..ed505be5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3951,9 +3951,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.82" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" +checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" dependencies = [ "itoa 1.0.2", "ryu", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 87abdc52..e24ba2ee 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -21,7 +21,7 @@ rand = "0.8.5" serde = "1.0.141" serde_with = "2.0.0" serde_urlencoded = "0.7.1" -serde_json = "1.0.82" +serde_json = "1.0.83" sqlx = "0.6.1" thiserror = "1.0.32" tokio = "1.20.1" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index aa852ad3..b931fa0a 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -15,7 +15,7 @@ schemars = { version = "0.8.10", features = ["url", "chrono"] } tower = { version = "0.4.13", features = ["full"] } hyper = { version = "0.14.20", features = ["full"] } serde_yaml = "0.9.4" -serde_json = "1.0.82" +serde_json = "1.0.83" url = "2.2.2" argon2 = { version = "0.4.1", features = ["password-hash"] } reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = false, optional = true } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 28b4bbe4..01b2cac8 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.141", features = ["derive"] } serde_with = { version = "2.0.0", features = ["hex", "chrono"] } -serde_json = "1.0.82" +serde_json = "1.0.83" 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 aa5b8472..b53b49ba 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -33,7 +33,7 @@ sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] } # Various structure (de)serialization serde = { version = "1.0.141", features = ["derive"] } serde_with = { version = "2.0.0", features = ["hex", "chrono"] } -serde_json = "1.0.82" +serde_json = "1.0.83" serde_urlencoded = "0.7.1" # Password hashing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 6484aab7..11fafec5 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.6" serde = "1.0.141" -serde_json = "1.0.82" +serde_json = "1.0.83" thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["sync", "parking_lot"] } tower = { version = "0.4.13", features = ["timeout", "limit"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index bfda32de..dcdd9d82 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -25,7 +25,7 @@ rsa = "0.7.0-pre" schemars = "0.8.10" sec1 = "0.3.0" serde = { version = "1.0.141", features = ["derive"] } -serde_json = "1.0.82" +serde_json = "1.0.83" serde_with = { version = "2.0.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.5.0" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 3ee9f2ec..c59a9ad9 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.8" serde = "1.0.141" -serde_json = "1.0.82" +serde_json = "1.0.83" language-tags = { version = "0.3.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } parse-display = "0.5.5" diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index aeac9ffe..42b3c6ed 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" anyhow = "1.0.59" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.141", features = ["derive"] } -serde_json = "1.0.82" +serde_json = "1.0.83" thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["io-util", "rt"] } tracing = "0.1.36" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index fce05ff3..2a9f2905 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -10,7 +10,7 @@ tokio = "1.20.1" sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] } chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.141", features = ["derive"] } -serde_json = "1.0.82" +serde_json = "1.0.83" thiserror = "1.0.32" anyhow = "1.0.59" tracing = "0.1.36" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 6f3b6166..0d679e91 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -17,7 +17,7 @@ thiserror = "1.0.32" tera = "1.16.0" serde = { version = "1.0.141", features = ["derive"] } -serde_json = "1.0.82" +serde_json = "1.0.83" serde_urlencoded = "0.7.1" chrono = "0.4.19"