summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2023-05-05 14:16:59 +0200
committerNeal H. Walfield <neal@pep.foundation>2023-05-05 15:05:02 +0200
commit24bfa3a42cb32b197b9fd8151fbc3a53481ce9aa (patch)
tree6d0da3d90673397dbecee6d36e974fa51c5c7637
parentc1d3e25aae3bca3b6ddd664304afe5f3c047d7f4 (diff)
openpgp: Remove foreign-types-shared dependency
- It's not used.
-rw-r--r--Cargo.lock1
-rw-r--r--openpgp/Cargo.toml3
2 files changed, 1 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 60aea39e..ece4e9e7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2327,7 +2327,6 @@ dependencies = [
"ed25519",
"ed25519-dalek",
"flate2",
- "foreign-types-shared",
"generic-array",
"getrandom 0.2.9",
"idea",
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index ba53b15b..6a63cd96 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -52,7 +52,6 @@ openssl = { version = "0.10.47", optional = true }
# in its build script is passed to sequoia-openpgp's build script
# see: https://doc.rust-lang.org/cargo/reference/build-scripts.html#the-links-manifest-key
openssl-sys = { version = "0.9.82", optional = true }
-foreign-types-shared = { version = "0.1.1", optional = true }
# Botan.
botan = { version = "0.10", optional = true }
@@ -134,7 +133,7 @@ crypto-cng = [
"cipher", "eax", "winapi", "win-crypto-ng", "ed25519-dalek",
"num-bigint-dig"
]
-crypto-openssl = ["openssl", "openssl-sys", "foreign-types-shared"]
+crypto-openssl = ["openssl", "openssl-sys"]
crypto-botan = ["botan"]
__implicit-crypto-backend-for-tests = []