From f274e2884b210645def34a5e03a606dc4aa4ad3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Sep 2022 19:51:47 +0000 Subject: [PATCH] Bump sha2 from 0.10.3 to 0.10.4 Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.3 to 0.10.4. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.3...sha2-v0.10.4) --- updated-dependencies: - dependency-name: sha2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 ++++++++++++++-------------- crates/handlers/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- crates/oauth2-types/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc27ccbc..16e3a1dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -903,7 +903,7 @@ dependencies = [ "hkdf", "percent-encoding", "rand", - "sha2 0.10.3", + "sha2 0.10.4", "subtle", "time 0.3.12", "version_check", @@ -2207,7 +2207,7 @@ dependencies = [ "cfg-if", "ecdsa", "elliptic-curve", - "sha2 0.10.3", + "sha2 0.10.4", ] [[package]] @@ -2488,7 +2488,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_with", - "sha2 0.10.3", + "sha2 0.10.4", "sqlx", "thiserror", "tokio", @@ -2575,7 +2575,7 @@ dependencies = [ "serde", "serde_json", "serde_with", - "sha2 0.10.3", + "sha2 0.10.4", "signature", "thiserror", "tracing", @@ -2911,7 +2911,7 @@ dependencies = [ "serde-enum-str", "serde_json", "serde_with", - "sha2 0.10.3", + "sha2 0.10.4", "thiserror", "url", ] @@ -2953,7 +2953,7 @@ dependencies = [ "serde_json", "serde_yaml 0.9.10", "sha1", - "sha2 0.10.3", + "sha2 0.10.4", "sprintf", "thiserror", "tokio", @@ -3097,7 +3097,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ "ecdsa", "elliptic-curve", - "sha2 0.10.3", + "sha2 0.10.4", ] [[package]] @@ -3108,7 +3108,7 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" dependencies = [ "ecdsa", "elliptic-curve", - "sha2 0.10.3", + "sha2 0.10.4", ] [[package]] @@ -3412,7 +3412,7 @@ dependencies = [ "hmac", "pbkdf2", "scrypt", - "sha2 0.10.3", + "sha2 0.10.4", "spki", ] @@ -3983,7 +3983,7 @@ dependencies = [ "hmac", "pbkdf2", "salsa20", - "sha2 0.10.3", + "sha2 0.10.4", ] [[package]] @@ -4236,9 +4236,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.3" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "899bf02746a2c92bf1053d9327dadb252b01af1f81f90cdb902411f518bc7215" +checksum = "774e4e60efdce3075f9c44d7028b20a6a1d765d0ed642e4c19a4831edc8d576b" dependencies = [ "cfg-if", "cpufeatures", @@ -4404,7 +4404,7 @@ dependencies = [ "serde", "serde_json", "sha-1", - "sha2 0.10.3", + "sha2 0.10.4", "smallvec", "sqlformat", "sqlx-rt", @@ -4431,7 +4431,7 @@ dependencies = [ "quote", "serde", "serde_json", - "sha2 0.10.3", + "sha2 0.10.4", "sqlx-core", "sqlx-rt", "syn", diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index c22bddf5..77a0855c 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -40,7 +40,7 @@ serde_urlencoded = "0.7.1" argon2 = { version = "0.4.1", features = ["password-hash"] } # Crypto, hashing and signing stuff -sha2 = "0.10.3" +sha2 = "0.10.4" # Various data types and utilities data-encoding = "2.3.2" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 740230bf..3945aeef 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -24,7 +24,7 @@ sec1 = "0.3.0" serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.85" serde_with = { version = "2.0.0", features = ["base64"] } -sha2 = "0.10.3" +sha2 = "0.10.4" signature = "1.6.0" thiserror = "1.0.32" tracing = "0.1.36" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 1acd4260..f97344aa 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -15,7 +15,7 @@ parse-display = "0.6.0" indoc = "1.0.7" serde_with = { version = "2.0.0", features = ["chrono"] } chrono = "0.4.22" -sha2 = "0.10.3" +sha2 = "0.10.4" data-encoding = "2.3.2" thiserror = "1.0.32" itertools = "0.10.3"