From 43d85c648975a6e57e73923879d4a159e02d1ae4 Mon Sep 17 00:00:00 2001 From: Niyaz Nigmatullin Date: Mon, 12 Sep 2022 19:54:49 +0300 Subject: [PATCH] rand_pcg is used only in unix tests, moved to unix dev-dependencies --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2830ac531..ce528c41e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -391,7 +391,6 @@ glob = "0.3.0" libc = "0.2" pretty_assertions = "1" rand = "0.8" -rand_pcg = "0.3" regex = "1.6" sha1 = { version="0.10", features=["std"] } tempfile = "3" @@ -409,6 +408,7 @@ rlimit = "0.8.3" [target.'cfg(unix)'.dev-dependencies] nix = { version = "0.25", default-features = false, features = ["process", "signal", "user"] } rust-users = { version="0.11", package="users" } +rand_pcg = "0.3" [build-dependencies] phf_codegen = "0.11.1"