From 14ab53ddfc2abdfffd8772bf3b945bd3339773a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Aug 2022 13:26:05 +0000 Subject: [PATCH] Bump serde_json from 1.0.83 to 1.0.85 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.83 to 1.0.85. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.83...v1.0.85) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/axum-utils/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/http/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- crates/oauth2-types/Cargo.toml | 2 +- crates/policy/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/templates/Cargo.toml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ab188aa..ab98eef3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3994,9 +3994,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.83" +version = "1.0.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" +checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" dependencies = [ "itoa 1.0.2", "ryu", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index f06c87b5..790278d3 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -21,7 +21,7 @@ rand = "0.8.5" serde = "1.0.144" serde_with = "2.0.0" serde_urlencoded = "0.7.1" -serde_json = "1.0.83" +serde_json = "1.0.85" 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 ec2dc929..7e6e17b4 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.10" -serde_json = "1.0.83" +serde_json = "1.0.85" 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 2b40a0b4..5faaf56c 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.144", features = ["derive"] } serde_with = { version = "2.0.0", features = ["hex", "chrono"] } -serde_json = "1.0.83" +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 c73a53d1..b981abb6 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.144", features = ["derive"] } serde_with = { version = "2.0.0", features = ["hex", "chrono"] } -serde_json = "1.0.83" +serde_json = "1.0.85" serde_urlencoded = "0.7.1" # Password hashing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 9fe11e5d..b95d786c 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.144" -serde_json = "1.0.83" +serde_json = "1.0.85" serde_urlencoded = "0.7.1" thiserror = "1.0.32" tokio = { version = "1.20.1", optional = true } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index e662cd2c..295dc527 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.144", features = ["derive"] } -serde_json = "1.0.83" +serde_json = "1.0.85" serde_with = { version = "2.0.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.6.0" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 1ed73e6c..2fdfc27c 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.144" -serde_json = "1.0.83" +serde_json = "1.0.85" 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 0c484f72..7e82b377 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" anyhow = "1.0.62" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.144", features = ["derive"] } -serde_json = "1.0.83" +serde_json = "1.0.85" 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 3297f830..f293d695 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.22", features = ["serde"] } serde = { version = "1.0.144", features = ["derive"] } -serde_json = "1.0.83" +serde_json = "1.0.85" thiserror = "1.0.32" anyhow = "1.0.62" tracing = "0.1.36" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 03010b82..aceeb9d7 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -17,7 +17,7 @@ thiserror = "1.0.32" tera = "1.17.0" serde = { version = "1.0.144", features = ["derive"] } -serde_json = "1.0.83" +serde_json = "1.0.85" serde_urlencoded = "0.7.1" chrono = "0.4.22"