summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-cryptography
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python3-cryptography')
-rw-r--r--meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch b/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch
deleted file mode 100644
index 7266fd7bef..0000000000
--- a/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From d41203b9b79f5edc2d33b0d62921822294dfaa6b Mon Sep 17 00:00:00 2001
2From: Tim Orling <tim.orling@konsulko.com>
3Date: Fri, 14 Jan 2022 22:02:25 -0800
4Subject: [PATCH] Cargo.toml: specify pem version
5
6pem = "1.0" is not resolving, specify the current
7pem = { version: "1.0.2"}
8
9Upstream-Status: Pending
10
11Signed-off-by: Tim Orling <tim.orling@konsulko.com>
12
13---
14 src/rust/Cargo.toml | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
18index d17245d..f8f6416 100644
19--- a/src/rust/Cargo.toml
20+++ b/src/rust/Cargo.toml
21@@ -9,7 +9,7 @@ publish = false
22 lazy_static = "1"
23 pyo3 = { version = "0.15.2" }
24 asn1 = { version = "0.8.7", default-features = false, features = ["derive"] }
25-pem = "1.0"
26+pem = { version = "1.0.2" }
27 chrono = { version = "0.4", default-features = false, features = ["alloc", "clock"] }
28 ouroboros = "0.15"
29