summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorKyle Willmon <kylewillmon@gmail.com>2023-01-18 09:18:41 -0600
committerGitHub <noreply@github.com>2023-01-18 15:18:41 +0000
commit84e9794970e998aaa510a526160258905a092d05 (patch)
tree81a94d9f49d233b506d3e57beb2631aad48b5a3f /Cargo.lock
parentf418be4f57594e88e5bcc6f384f1f6ad39f3918f (diff)
chore(ext/crypto): Update rsa to 0.7.0 (#16327)
Bump the rsa crate to 0.7.0 The API for the `rsa` crate has changed significantly, but I have verified that tests continue to pass throughout this update.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock29
1 files changed, 22 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 96a6b01da..97d9caeb4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -960,8 +960,9 @@ dependencies = [
"sec1",
"serde",
"serde_bytes",
- "sha-1 0.10.0",
+ "sha1",
"sha2",
+ "signature",
"spki",
"tokio",
"uuid",
@@ -1368,6 +1369,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
dependencies = [
"block-buffer 0.10.3",
+ "const-oid",
"crypto-common",
"subtle",
]
@@ -3220,12 +3222,13 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkcs1"
-version = "0.4.0"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e3a81571d9455414f4d59ce2830bc9d2654e2efc5460fd67b0e0a6a36b6753a"
+checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719"
dependencies = [
"der",
"pkcs8",
+ "spki",
"zeroize",
]
@@ -3626,9 +3629,9 @@ dependencies = [
[[package]]
name = "rsa"
-version = "0.7.0-pre"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6168b9a0f38e487db90dc109ad6d8f37fc5590183b7bfe8d8687e0b86116d53f"
+checksum = "96144aaefe4fa4c1846c404d1ccc3dc45c9b15c2e41591597294cb7ccc2dbfd7"
dependencies = [
"byteorder",
"digest 0.10.5",
@@ -3639,6 +3642,7 @@ dependencies = [
"pkcs1",
"pkcs8",
"rand_core 0.6.4",
+ "signature",
"smallvec",
"subtle",
"zeroize",
@@ -3976,6 +3980,17 @@ dependencies = [
]
[[package]]
+name = "sha1"
+version = "0.10.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
+dependencies = [
+ "cfg-if",
+ "cpufeatures",
+ "digest 0.10.5",
+]
+
+[[package]]
name = "sha2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -4003,9 +4018,9 @@ dependencies = [
[[package]]
name = "signature"
-version = "1.6.3"
+version = "1.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "deb766570a2825fa972bceff0d195727876a9cdf2460ab2e52d455dc2de47fd9"
+checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
dependencies = [
"digest 0.10.5",
"rand_core 0.6.4",