deps: update quickcheck and rand to latest versions

These are dev dependencies, so we don't need to worry about the minimum
Rust version supported.
This commit is contained in:
Andrew Gallant 2017-12-30 09:34:43 -05:00
parent 83c0b2fb06
commit 55223a5269
2 changed files with 4 additions and 4 deletions

View File

@ -35,9 +35,9 @@ utf8-ranges = "1.0.0"
# For examples.
lazy_static = "1"
# For property based tests.
quickcheck = { version = "0.5", default-features = false }
quickcheck = { version = "0.6", default-features = false }
# For generating random test data.
rand = "0.3.15"
rand = "0.4"
[features]
# Enable to use the unstable pattern traits defined in std.

View File

@ -9,5 +9,5 @@ homepage = "https://github.com/rust-lang/regex"
description = "A regular expression parser."
[dev-dependencies]
quickcheck = { version = "0.5", default-features = false }
rand = "0.3.15"
quickcheck = { version = "0.6", default-features = false }
rand = "0.4"