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.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] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-09-02 19:51:47 +00:00
committed by Quentin Gliech
parent 4c32e5c5b9
commit f274e2884b
4 changed files with 17 additions and 17 deletions

28
Cargo.lock generated
View File

@ -903,7 +903,7 @@ dependencies = [
"hkdf", "hkdf",
"percent-encoding", "percent-encoding",
"rand", "rand",
"sha2 0.10.3", "sha2 0.10.4",
"subtle", "subtle",
"time 0.3.12", "time 0.3.12",
"version_check", "version_check",
@ -2207,7 +2207,7 @@ dependencies = [
"cfg-if", "cfg-if",
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",
"sha2 0.10.3", "sha2 0.10.4",
] ]
[[package]] [[package]]
@ -2488,7 +2488,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_urlencoded", "serde_urlencoded",
"serde_with", "serde_with",
"sha2 0.10.3", "sha2 0.10.4",
"sqlx", "sqlx",
"thiserror", "thiserror",
"tokio", "tokio",
@ -2575,7 +2575,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_with", "serde_with",
"sha2 0.10.3", "sha2 0.10.4",
"signature", "signature",
"thiserror", "thiserror",
"tracing", "tracing",
@ -2911,7 +2911,7 @@ dependencies = [
"serde-enum-str", "serde-enum-str",
"serde_json", "serde_json",
"serde_with", "serde_with",
"sha2 0.10.3", "sha2 0.10.4",
"thiserror", "thiserror",
"url", "url",
] ]
@ -2953,7 +2953,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_yaml 0.9.10", "serde_yaml 0.9.10",
"sha1", "sha1",
"sha2 0.10.3", "sha2 0.10.4",
"sprintf", "sprintf",
"thiserror", "thiserror",
"tokio", "tokio",
@ -3097,7 +3097,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
dependencies = [ dependencies = [
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",
"sha2 0.10.3", "sha2 0.10.4",
] ]
[[package]] [[package]]
@ -3108,7 +3108,7 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa"
dependencies = [ dependencies = [
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",
"sha2 0.10.3", "sha2 0.10.4",
] ]
[[package]] [[package]]
@ -3412,7 +3412,7 @@ dependencies = [
"hmac", "hmac",
"pbkdf2", "pbkdf2",
"scrypt", "scrypt",
"sha2 0.10.3", "sha2 0.10.4",
"spki", "spki",
] ]
@ -3983,7 +3983,7 @@ dependencies = [
"hmac", "hmac",
"pbkdf2", "pbkdf2",
"salsa20", "salsa20",
"sha2 0.10.3", "sha2 0.10.4",
] ]
[[package]] [[package]]
@ -4236,9 +4236,9 @@ dependencies = [
[[package]] [[package]]
name = "sha2" name = "sha2"
version = "0.10.3" version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "899bf02746a2c92bf1053d9327dadb252b01af1f81f90cdb902411f518bc7215" checksum = "774e4e60efdce3075f9c44d7028b20a6a1d765d0ed642e4c19a4831edc8d576b"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"cpufeatures", "cpufeatures",
@ -4404,7 +4404,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"sha-1", "sha-1",
"sha2 0.10.3", "sha2 0.10.4",
"smallvec", "smallvec",
"sqlformat", "sqlformat",
"sqlx-rt", "sqlx-rt",
@ -4431,7 +4431,7 @@ dependencies = [
"quote", "quote",
"serde", "serde",
"serde_json", "serde_json",
"sha2 0.10.3", "sha2 0.10.4",
"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.3" sha2 = "0.10.4"
# 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.3" sha2 = "0.10.4"
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.6.0"
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.3" sha2 = "0.10.4"
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"