1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
From: Andrey Rakhmatullin <wrar@debian.org>
Date: Sun, 23 Mar 2025 16:20:16 +0500
Subject: Update some requirement versions to sid ones.
---
src/rust/Cargo.toml | 6 +++---
src/rust/cryptography-cffi/Cargo.toml | 2 +-
src/rust/cryptography-key-parsing/Cargo.toml | 6 +++---
src/rust/cryptography-openssl/Cargo.toml | 2 +-
src/rust/cryptography-x509-verification/Cargo.toml | 2 +-
src/rust/cryptography-x509/Cargo.toml | 2 +-
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index d58ee9e..632e18a 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -18,7 +18,7 @@ rust-version.workspace = true
once_cell = "1"
cfg-if = "1"
pyo3 = { version = "0.22.2", features = ["abi3"] }
-asn1 = { version = "0.16.2", default-features = false }
+asn1 = { version = "0.20.0", default-features = false }
cryptography-cffi = { path = "cryptography-cffi" }
cryptography-keepalive = { path = "cryptography-keepalive" }
cryptography-key-parsing = { path = "cryptography-key-parsing" }
@@ -26,8 +26,8 @@ cryptography-x509 = { path = "cryptography-x509" }
cryptography-x509-verification = { path = "cryptography-x509-verification" }
cryptography-openssl = { path = "cryptography-openssl" }
pem = { version = "3", default-features = false }
-openssl = "0.10.65"
-openssl-sys = "0.9.103"
+openssl = "0.10.64"
+openssl-sys = "0.9.101"
foreign-types-shared = "0.1"
self_cell = "1"
diff --git a/src/rust/cryptography-cffi/Cargo.toml b/src/rust/cryptography-cffi/Cargo.toml
index f983dbd..afa711f 100644
--- a/src/rust/cryptography-cffi/Cargo.toml
+++ b/src/rust/cryptography-cffi/Cargo.toml
@@ -8,7 +8,7 @@ rust-version.workspace = true
[dependencies]
pyo3 = { version = "0.22.2", features = ["abi3"] }
-openssl-sys = "0.9.103"
+openssl-sys = "0.9.101"
[build-dependencies]
cc = "1.1.6"
diff --git a/src/rust/cryptography-key-parsing/Cargo.toml b/src/rust/cryptography-key-parsing/Cargo.toml
index d1f945f..242cb91 100644
--- a/src/rust/cryptography-key-parsing/Cargo.toml
+++ b/src/rust/cryptography-key-parsing/Cargo.toml
@@ -7,8 +7,8 @@ publish.workspace = true
rust-version.workspace = true
[dependencies]
-asn1 = { version = "0.16.2", default-features = false }
+asn1 = { version = "0.20.0", default-features = false }
cfg-if = "1"
-openssl = "0.10.65"
-openssl-sys = "0.9.103"
+openssl = "0.10.64"
+openssl-sys = "0.9.101"
cryptography-x509 = { path = "../cryptography-x509" }
diff --git a/src/rust/cryptography-openssl/Cargo.toml b/src/rust/cryptography-openssl/Cargo.toml
index c0f3f5d..f2dc510 100644
--- a/src/rust/cryptography-openssl/Cargo.toml
+++ b/src/rust/cryptography-openssl/Cargo.toml
@@ -8,7 +8,7 @@ rust-version.workspace = true
[dependencies]
cfg-if = "1"
-openssl = "0.10.65"
+openssl = "0.10.64"
ffi = { package = "openssl-sys", version = "0.9.101" }
foreign-types = "0.3"
foreign-types-shared = "0.1"
diff --git a/src/rust/cryptography-x509-verification/Cargo.toml b/src/rust/cryptography-x509-verification/Cargo.toml
index 2e1e749..a9fa9df 100644
--- a/src/rust/cryptography-x509-verification/Cargo.toml
+++ b/src/rust/cryptography-x509-verification/Cargo.toml
@@ -7,7 +7,7 @@ publish.workspace = true
rust-version.workspace = true
[dependencies]
-asn1 = { version = "0.16.2", default-features = false }
+asn1 = { version = "0.20.0", default-features = false }
cryptography-x509 = { path = "../cryptography-x509" }
cryptography-key-parsing = { path = "../cryptography-key-parsing" }
once_cell = "1"
diff --git a/src/rust/cryptography-x509/Cargo.toml b/src/rust/cryptography-x509/Cargo.toml
index 8da775c..8f772ce 100644
--- a/src/rust/cryptography-x509/Cargo.toml
+++ b/src/rust/cryptography-x509/Cargo.toml
@@ -8,4 +8,4 @@ publish = false
rust-version = "1.65.0"
[dependencies]
-asn1 = { version = "0.16.2", default-features = false }
+asn1 = { version = "0.20.0", default-features = false }
|