1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Bump sha2 from 0.10.2 to 0.10.3

Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.2 to 0.10.3.
- [Release notes](https://github.com/RustCrypto/hashes/releases)
- [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.2...sha2-v0.10.3)

---
updated-dependencies:
- dependency-name: sha2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-09-02 13:47:36 +00:00
committed by Quentin Gliech
parent cc6c6e8bdb
commit dca662da65
4 changed files with 17 additions and 17 deletions

28
Cargo.lock generated
View File

@ -917,7 +917,7 @@ dependencies = [
"hkdf", "hkdf",
"percent-encoding", "percent-encoding",
"rand", "rand",
"sha2 0.10.2", "sha2 0.10.3",
"subtle", "subtle",
"time 0.3.12", "time 0.3.12",
"version_check", "version_check",
@ -2219,7 +2219,7 @@ dependencies = [
"cfg-if", "cfg-if",
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",
"sha2 0.10.2", "sha2 0.10.3",
] ]
[[package]] [[package]]
@ -2500,7 +2500,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_urlencoded", "serde_urlencoded",
"serde_with", "serde_with",
"sha2 0.10.2", "sha2 0.10.3",
"sqlx", "sqlx",
"thiserror", "thiserror",
"tokio", "tokio",
@ -2587,7 +2587,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_with", "serde_with",
"sha2 0.10.2", "sha2 0.10.3",
"signature", "signature",
"thiserror", "thiserror",
"tracing", "tracing",
@ -2929,7 +2929,7 @@ dependencies = [
"serde-enum-str", "serde-enum-str",
"serde_json", "serde_json",
"serde_with", "serde_with",
"sha2 0.10.2", "sha2 0.10.3",
"thiserror", "thiserror",
"url", "url",
] ]
@ -2980,7 +2980,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_yaml 0.9.10", "serde_yaml 0.9.10",
"sha1", "sha1",
"sha2 0.10.2", "sha2 0.10.3",
"sprintf", "sprintf",
"thiserror", "thiserror",
"tokio", "tokio",
@ -3124,7 +3124,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
dependencies = [ dependencies = [
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",
"sha2 0.10.2", "sha2 0.10.3",
] ]
[[package]] [[package]]
@ -3135,7 +3135,7 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa"
dependencies = [ dependencies = [
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",
"sha2 0.10.2", "sha2 0.10.3",
] ]
[[package]] [[package]]
@ -3439,7 +3439,7 @@ dependencies = [
"hmac", "hmac",
"pbkdf2", "pbkdf2",
"scrypt", "scrypt",
"sha2 0.10.2", "sha2 0.10.3",
"spki", "spki",
] ]
@ -4022,7 +4022,7 @@ dependencies = [
"hmac", "hmac",
"pbkdf2", "pbkdf2",
"salsa20", "salsa20",
"sha2 0.10.2", "sha2 0.10.3",
] ]
[[package]] [[package]]
@ -4275,9 +4275,9 @@ dependencies = [
[[package]] [[package]]
name = "sha2" name = "sha2"
version = "0.10.2" version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" checksum = "899bf02746a2c92bf1053d9327dadb252b01af1f81f90cdb902411f518bc7215"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"cpufeatures", "cpufeatures",
@ -4443,7 +4443,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"sha-1", "sha-1",
"sha2 0.10.2", "sha2 0.10.3",
"smallvec", "smallvec",
"sqlformat", "sqlformat",
"sqlx-rt", "sqlx-rt",
@ -4470,7 +4470,7 @@ dependencies = [
"quote", "quote",
"serde", "serde",
"serde_json", "serde_json",
"sha2 0.10.2", "sha2 0.10.3",
"sqlx-core", "sqlx-core",
"sqlx-rt", "sqlx-rt",
"syn", "syn",

View File

@ -40,7 +40,7 @@ serde_urlencoded = "0.7.1"
argon2 = { version = "0.4.1", features = ["password-hash"] } argon2 = { version = "0.4.1", features = ["password-hash"] }
# Crypto, hashing and signing stuff # Crypto, hashing and signing stuff
sha2 = "0.10.2" sha2 = "0.10.3"
# Various data types and utilities # Various data types and utilities
data-encoding = "2.3.2" data-encoding = "2.3.2"

View File

@ -24,7 +24,7 @@ sec1 = "0.3.0"
serde = { version = "1.0.144", features = ["derive"] } serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85" serde_json = "1.0.85"
serde_with = { version = "2.0.0", features = ["base64"] } serde_with = { version = "2.0.0", features = ["base64"] }
sha2 = "0.10.2" sha2 = "0.10.3"
signature = "1.6.0" signature = "1.6.0"
thiserror = "1.0.32" thiserror = "1.0.32"
tracing = "0.1.36" tracing = "0.1.36"

View File

@ -15,7 +15,7 @@ parse-display = "0.5.5"
indoc = "1.0.7" indoc = "1.0.7"
serde_with = { version = "2.0.0", features = ["chrono"] } serde_with = { version = "2.0.0", features = ["chrono"] }
chrono = "0.4.22" chrono = "0.4.22"
sha2 = "0.10.2" sha2 = "0.10.3"
data-encoding = "2.3.2" data-encoding = "2.3.2"
thiserror = "1.0.32" thiserror = "1.0.32"
itertools = "0.10.3" itertools = "0.10.3"