summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-08-22 13:30:49 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-08-22 13:30:49 +0200
commitbfe6634e6037322e27cf0d0acde16218d2f6174c (patch)
tree5f04b75a6df29d2a939fef27b0463fbcea54aebb
parentd7985dfb8536d7612faa27e0bb65d2450d1c03b1 (diff)
Trim dependencies of crates 'rand' and 'quickcheck'.
-rw-r--r--Cargo.lock2
-rw-r--r--ipc/Cargo.toml2
-rw-r--r--net/Cargo.toml2
-rw-r--r--openpgp/Cargo.toml4
-rw-r--r--rfc2822/Cargo.toml4
-rw-r--r--store/Cargo.toml2
6 files changed, 7 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 6d6a2300..399c0cbd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1254,8 +1254,6 @@ name = "quickcheck"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
- "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 4490fe6b..6ac349ae 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -31,7 +31,7 @@ futures = "0.1"
lalrpop-util = "0.17"
libc = "0.2.33"
memsec = "0.5.6"
-rand = "0.6"
+rand = { version = "0.6", default-features = false }
tempfile = "3.0"
tokio = "0.1"
tokio-core = "0.1"
diff --git a/net/Cargo.toml b/net/Cargo.toml
index e0824eea..7ea67c4d 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -41,7 +41,7 @@ url = "1.6.0"
zbase32 = "0.1.2"
[dev-dependencies]
-rand = "0.6"
+rand = { version = "0.6", default-features = false }
[features]
default = ["compression"]
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index c93cef30..0a914fc3 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -33,8 +33,8 @@ lalrpop-util = "0.17"
lazy_static = "1.3"
memsec = "0.5.6"
nettle = "5.0.2"
-quickcheck = "0.8"
-rand = "0.6"
+quickcheck = { version = "0.8", default-features = false }
+rand = { version = "0.6", default-features = false }
time = "0.1.40"
sequoia-rfc2822 = { path = "../rfc2822", version = "0.9" }
diff --git a/rfc2822/Cargo.toml b/rfc2822/Cargo.toml
index 60f0a048..21992be4 100644
--- a/rfc2822/Cargo.toml
+++ b/rfc2822/Cargo.toml
@@ -27,8 +27,8 @@ lalrpop-util = "0.17"
[dev-dependencies]
lazy_static = "1.3"
-quickcheck = "0.8"
-rand = "0.6"
+quickcheck = { version = "0.8", default-features = false }
+rand = { version = "0.6", default-features = false }
[build-dependencies]
lalrpop = "0.17"
diff --git a/store/Cargo.toml b/store/Cargo.toml
index abc4112b..c26d5cb1 100644
--- a/store/Cargo.toml
+++ b/store/Cargo.toml
@@ -35,7 +35,7 @@ capnp = "0.10"
capnp-rpc = "0.10"
failure = "0.1.2"
futures = "0.1.17"
-rand = "0.6"
+rand = { version = "0.6", default-features = false }
rusqlite = "0.14"
time = "0.1.38"
tokio-core = "0.1.10"