summaryrefslogtreecommitdiffstats
path: root/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 /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 'ffi')
-rw-r--r--ffi/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index 6097ba45..f76c6a61 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -30,7 +30,7 @@ sequoia-net = { path = "../net", version = "0.19" }
anyhow = "1"
lazy_static = "1.0.0"
libc = "0.2.33"
-memsec = "0.6"
+memsec = { version = "0.6", default-features = false }
native-tls = "0.2.0"
tokio-core = "0.1"