summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi
diff options
context:
space:
mode:
authorIgor Matuszewski <igor@sequoia-pgp.org>2020-10-06 21:54:42 +0200
committerIgor Matuszewski <igor@sequoia-pgp.org>2020-10-06 21:57:36 +0200
commitd6e7a4d92008f030ed8108ae62eb97e37c624e0d (patch)
tree888c277e85f9d5ad8c5f4fd729c724aa41b4339e /openpgp-ffi
parent1e325cb2643388601c292f329c901b311410bd48 (diff)
Don't use OS-specific extensions from memsec
We only ever use {memset, memzero, memeq, memcmp} anyway - don't pull OS-specific functions like mlock.
Diffstat (limited to 'openpgp-ffi')
-rw-r--r--openpgp-ffi/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp-ffi/Cargo.toml b/openpgp-ffi/Cargo.toml
index 9d612070..38faa85e 100644
--- a/openpgp-ffi/Cargo.toml
+++ b/openpgp-ffi/Cargo.toml
@@ -27,7 +27,7 @@ sequoia-openpgp = { path = "../openpgp", version = "0.19" }
anyhow = "1"
lazy_static = "1.0.0"
libc = "0.2.33"
-memsec = "0.6"
+memsec = { version = "0.6", default-features = false }
[dev-dependencies]
filetime = "0.2"