1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Bump ecdsa from 0.14.3 to 0.14.4

Bumps [ecdsa](https://github.com/RustCrypto/signatures) from 0.14.3 to 0.14.4.
- [Release notes](https://github.com/RustCrypto/signatures/releases)
- [Commits](https://github.com/RustCrypto/signatures/compare/ecdsa/v0.14.3...ecdsa/v0.14.4)

---
updated-dependencies:
- dependency-name: ecdsa
  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-08-19 10:24:15 +00:00
committed by Quentin Gliech
parent 862332543d
commit 9f6abefa21
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1328,9 +1328,9 @@ checksum = "9d07a982d1fb29db01e5a59b1918e03da4df7297eaeee7686ac45542fd4e59c8"
[[package]] [[package]]
name = "ecdsa" name = "ecdsa"
version = "0.14.3" version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bd46e0c364655e5baf2f5e99b603e7a09905da9966d7928d7470af393b28670" checksum = "e852f4174d2a8646a0fa8a34b55797856c722f86267deb0aa1e93f7f247f800e"
dependencies = [ dependencies = [
"der", "der",
"elliptic-curve", "elliptic-curve",

View File

@ -12,7 +12,7 @@ base64ct = { version = "1.5.1", features = ["std"] }
chrono = { version = "0.4.22", features = ["serde"] } chrono = { version = "0.4.22", features = ["serde"] }
crypto-mac = { version = "0.11.1", features = ["std"] } crypto-mac = { version = "0.11.1", features = ["std"] }
digest = "0.10.3" digest = "0.10.3"
ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] } ecdsa = { version = "0.14.4", features = ["sign", "verify", "pem", "pkcs8"] }
elliptic-curve = { version = "0.12.3", features = ["ecdh", "pem"] } elliptic-curve = { version = "0.12.3", features = ["ecdh", "pem"] }
futures-util = "0.3.23" futures-util = "0.3.23"
hmac = "0.12.1" hmac = "0.12.1"