From 85ea5306ad3ccc9f49ed2bba4c887d7a3e07e887 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 22 Dec 2020 18:28:35 +0900 Subject: [PATCH] deps: update rand to 0.8, loom to 0.4 (#3307) --- stress-test/Cargo.toml | 2 +- tokio/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stress-test/Cargo.toml b/stress-test/Cargo.toml index 769dc485..e1425619 100644 --- a/stress-test/Cargo.toml +++ b/stress-test/Cargo.toml @@ -11,4 +11,4 @@ publish = false tokio = { path = "../tokio/", features = ["full"] } [dev-dependencies] -rand = "0.7.3" +rand = "0.8" diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 2750a6d3..ca0f41ea 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -127,7 +127,7 @@ tempfile = "3.1.0" async-stream = "0.3" [target.'cfg(loom)'.dev-dependencies] -loom = { version = "0.3.5", features = ["futures", "checkpoint"] } +loom = { version = "0.4", features = ["futures", "checkpoint"] } [build-dependencies] autocfg = "1" # Needed for conditionally enabling `track-caller`