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
|
From: Andrey Rakhmatullin <wrar@debian.org>
Date: Sat, 14 Feb 2026 18:36:38 +0500
Subject: Update some requirement versions to sid/experimental ones.
---
Cargo.toml | 10 +++++-----
src/rust/cryptography-cffi/Cargo.toml | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index a698cc1..bf425f5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,11 +21,11 @@ rust-version = "1.74.0"
license = "Apache-2.0 OR BSD-3-Clause"
[workspace.dependencies]
-asn1 = { version = "0.22.0", default-features = false }
-pyo3 = { version = "0.26", features = ["abi3"] }
-pyo3-build-config = { version = "0.26" }
-openssl = "0.10.74"
-openssl-sys = "0.9.110"
+asn1 = { version = "0.23.0", default-features = false }
+pyo3 = { version = ">=0.27,<0.28", features = ["abi3"] }
+pyo3-build-config = { version = ">=0.27,<0.28" }
+openssl = "0.10.73"
+openssl-sys = "0.9.109"
[profile.release]
overflow-checks = true
diff --git a/src/rust/cryptography-cffi/Cargo.toml b/src/rust/cryptography-cffi/Cargo.toml
index 0a01251..2ed9271 100644
--- a/src/rust/cryptography-cffi/Cargo.toml
+++ b/src/rust/cryptography-cffi/Cargo.toml
@@ -12,7 +12,7 @@ pyo3.workspace = true
openssl-sys.workspace = true
[build-dependencies]
-cc = "1.2.37"
+cc = "1.2.34"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(python_implementation, values("CPython", "PyPy"))'] }
|