Skip to content

Commit

Permalink
deps: trim 'rand' dependencies
Browse files Browse the repository at this point in the history
Looks like all we need is 'getrandom' and 'small_rng'. No need for
'std'.
  • Loading branch information
BurntSushi committed Jan 8, 2021
1 parent 9dfcf7f commit 74d0c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ name = "quickcheck"
[dependencies]
env_logger = { version = "0.8.2", default-features = false, optional = true }
log = { version = "0.4", optional = true }
rand = { version = "0.8", default-features = false, features = ["small_rng", "std"] }
rand = { version = "0.8", default-features = false, features = ["getrandom", "small_rng"] }

0 comments on commit 74d0c60

Please sign in to comment.