Skip to content

Commit

Permalink
Set time/quickcheck feature only in dev
Browse files Browse the repository at this point in the history
This prevents `quickcheck` appearing in the regular build dependencies.
  • Loading branch information
Chris Connelly committed Mar 13, 2022
1 parent e1d5d27 commit 6cca562
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 6cca562

Please sign in to comment.