summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2022-02-25 11:31:31 +0100
committerNora Widdecke <nora@sequoia-pgp.org>2022-02-25 12:17:56 +0100
commit2c5c40988d692fc8eb6421e8ed33dec471c73235 (patch)
tree5caf1af2106518c82025f5c26f84697d28dd2c72
parent729e50150a9fc295632bdab3309001142f8e43e0 (diff)
ipc,net: Update rand dependency to 0.8
- Fixes #824.
-rw-r--r--Cargo.lock4
-rw-r--r--ipc/Cargo.toml2
-rw-r--r--net/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8696fdf5..4a1e49e2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2689,7 +2689,7 @@ dependencies = [
"libc",
"memsec",
"quickcheck",
- "rand 0.7.3",
+ "rand 0.8.4",
"sequoia-openpgp",
"socket2 0.3.19",
"tempfile",
@@ -2712,7 +2712,7 @@ dependencies = [
"libc",
"native-tls",
"percent-encoding",
- "rand 0.7.3",
+ "rand 0.8.4",
"sequoia-openpgp",
"tempfile",
"thiserror",
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 9e1dbd19..2dc75eec 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" }
+rand = { version = "0.8" }
tempfile = "3.1"
thiserror = "1.0.2"
tokio = { version = "1.13.1", features = [ "rt-multi-thread", "io-util", "net" ] }
diff --git a/net/Cargo.toml b/net/Cargo.toml
index e792ddff..144e30fb 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -39,7 +39,7 @@ tokio = { version = "1.13.1", features = [ "macros" ] }
base64 = ">=0.12"
[dev-dependencies]
-rand = { version = "0.7", default-features = false, features = [ "getrandom" ] }
+rand = { version = "0.8", default-features = false, features = [ "getrandom" ] }
hyper = { version = "0.14", features = [ "server" ] }
[lib]