1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-06 06:02:40 +03:00

Bump p256 from 0.11.0 to 0.11.1

Bumps [p256](https://github.com/RustCrypto/elliptic-curves) from 0.11.0 to 0.11.1.
- [Release notes](https://github.com/RustCrypto/elliptic-curves/releases)
- [Commits](https://github.com/RustCrypto/elliptic-curves/compare/p256/v0.11.0...p256/v0.11.1)

---
updated-dependencies:
- dependency-name: p256
  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-06-13 19:38:03 +00:00
committed by Quentin Gliech
parent 2112fc61fa
commit 83d30f1722
3 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@@ -1110,9 +1110,9 @@ dependencies = [
[[package]] [[package]]
name = "crypto-bigint" name = "crypto-bigint"
version = "0.4.3" version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78a4e0fb04deabeb711eb20bd1179f1524c06f7e6975ebccc495f678a635887b" checksum = "ac961631d66e80ac7ac2ac01320628ce214ad2b5ef0a88ceb86eae459069e2b4"
dependencies = [ dependencies = [
"generic-array 0.14.5", "generic-array 0.14.5",
"rand_core", "rand_core",
@@ -1353,9 +1353,9 @@ dependencies = [
[[package]] [[package]]
name = "elliptic-curve" name = "elliptic-curve"
version = "0.12.0" version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdd8c93ccd534d6a9790f4455cd71e7adb53a12e9af7dd54d1e258473f100cea" checksum = "4f6664c6a37892ed55da8dda26a99e6ccc783f0c72fa3c2eeaa00ed30d8f4d9a"
dependencies = [ dependencies = [
"base16ct", "base16ct",
"crypto-bigint", "crypto-bigint",
@@ -3029,9 +3029,9 @@ checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
[[package]] [[package]]
name = "p256" name = "p256"
version = "0.11.0" version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3e7336b74eb43c009656d53a65648b5ff3941b8421207e6a23f42d5aa3a89f3" checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
dependencies = [ dependencies = [
"ecdsa", "ecdsa",
"elliptic-curve", "elliptic-curve",

View File

@@ -26,7 +26,7 @@ lettre = { version = "0.10.0-rc.7", default-features = false, features = ["serde
rand = "0.8.5" rand = "0.8.5"
rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" } rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" }
p256 = { version = "0.11.0", features = ["ecdsa", "pem", "pkcs8"] } p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs8 = { version = "0.9.0", features = ["pem"] } pkcs8 = { version = "0.9.0", features = ["pem"] }
chacha20poly1305 = { version = "0.10.0-pre", features = ["std"] } chacha20poly1305 = { version = "0.10.0-pre", features = ["std"] }
cookie = { version = "0.16.0", features = ["private", "key-expansion"] } cookie = { version = "0.16.0", features = ["private", "key-expansion"] }

View File

@@ -17,7 +17,7 @@ elliptic-curve = { version = "0.12.0", features = ["ecdh", "pem"] }
futures-util = "0.3.21" futures-util = "0.3.21"
hmac = "0.12.1" hmac = "0.12.1"
http = "0.2.8" http = "0.2.8"
p256 = { version = "0.11.0", features = ["ecdsa", "pem", "pkcs8"] } p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs1 = { version = "0.4.0", features = ["pem", "pkcs8"] } pkcs1 = { version = "0.4.0", features = ["pem", "pkcs8"] }
pkcs8 = { version = "0.9.0", features = ["pem", "std"] } pkcs8 = { version = "0.9.0", features = ["pem", "std"] }
rand = "0.8.5" rand = "0.8.5"