summaryrefslogtreecommitdiffstats
path: root/ipc
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 /ipc
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 'ipc')
-rw-r--r--ipc/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index ca029b20..53e6de20 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -31,7 +31,7 @@ futures = "0.1"
lalrpop-util = "0.19"
lazy_static = "1.3"
libc = "0.2.33"
-memsec = "0.6"
+memsec = { version = "0.6", default-features = false }
rand = { version = "0.7", default-features = false }
tempfile = "3.0"
thiserror = "1"