From 8192bcdc05c6c063a0749abe8fbc106d10cadaf6 Mon Sep 17 00:00:00 2001 From: Dmitri Melnikov Date: Fri, 8 Jan 2021 23:28:00 +0200 Subject: [PATCH] Bump rand to 0.8 and quickcheck to 1.0 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d73f8d2ba..46c887d11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,8 +28,8 @@ large-dates = ["time-macros/large-dates"] [dependencies] const_fn = { version = "0.4.4", optional = true } -quickcheck-dep = { package = "quickcheck", version = "0.9.2", optional = true } -rand = { version = "0.7.3", optional = true, default-features = false } +quickcheck-dep = { package = "quickcheck", version = "1.0.1", optional = true } +rand = { version = "0.8.1", optional = true, default-features = false } serde = { version = "1.0.117", optional = true, default-features = false, features = ["derive"] } time-macros = { version = "=0.2.0-dev", path = "time-macros", optional = true } @@ -43,6 +43,6 @@ winapi = { version = "0.3.9", features = ["minwinbase", "minwindef", "timezoneap libc = "0.2.81" [dev-dependencies] -rand = { version = "0.7.3", default-features = false } +rand = { version = "0.8.1", default-features = false } serde_json = "1.0.59" time-macros = { path = "time-macros" }