From 6cca5625980e61669a5588af55be42b3fa8104bf Mon Sep 17 00:00:00 2001 From: Chris Connelly Date: Sun, 13 Mar 2022 20:09:14 +0000 Subject: [PATCH] Set `time/quickcheck` feature only in dev This prevents `quickcheck` appearing in the regular build dependencies. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e1e07a1..def4eeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,9 @@ edition = "2018" num-bigint = { default-features = false, version = "0.4" } num-traits = { default-features = false, version = "0.2" } thiserror = { default-features = false, version = "1" } -time = { default-features = false, version = "0.3", features = ["formatting", "macros", "parsing", "quickcheck"] } +time = { default-features = false, version = "0.3", features = ["formatting", "macros", "parsing"] } [dev-dependencies] quickcheck = "1.0.3" rand = "0.8.4" +time = { default-features = false, version = "0.3", features = ["formatting", "macros", "parsing", "quickcheck"] } -- 2.53.0