summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2021-03-31 12:55:15 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2021-03-31 12:55:15 +0200
commit1b9ee5169abfd52625b4a7657962c8f80f48295b (patch)
tree85323b1c98590cab7433979154d0b35c930b0328 /ipc
parentccfa5f6ffc170494a0f3ea5a3906c4b61c2df263 (diff)
ipc: Do not disable default features on rand.
- This causes issues when dependencies are merged as rand 0.8 has more granular feature selection and at least `std` should be used there.
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 c5e9e6ca..48b9af52 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -31,7 +31,7 @@ lalrpop-util = ">=0.17"
lazy_static = "1.4.0"
libc = "0.2.66"
memsec = { version = ">=0.5", default-features = false }
-rand = { version = "0.7", default-features = false }
+rand = { version = "0.7" }
tempfile = "3.1"
thiserror = "1.0.2"
tokio = { version = "0.2.19", features = ["rt-core", "rt-util", "tcp", "uds", "io-util", "macros"] }