Skip to content

Commit

Permalink
deps: update quickcheck and rand to latest versions
Browse files Browse the repository at this point in the history
These are dev dependencies, so we don't need to worry about the minimum
Rust version supported.
  • Loading branch information
BurntSushi committed Dec 30, 2017
1 parent 83c0b2f commit 55223a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions regex-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 55223a5

Please sign in to comment.