Skip to content

Commit 55223a5

Browse files
committed
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.
1 parent 83c0b2f commit 55223a5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ utf8-ranges = "1.0.0"
3535
# For examples.
3636
lazy_static = "1"
3737
# For property based tests.
38-
quickcheck = { version = "0.5", default-features = false }
38+
quickcheck = { version = "0.6", default-features = false }
3939
# For generating random test data.
40-
rand = "0.3.15"
40+
rand = "0.4"
4141

4242
[features]
4343
# Enable to use the unstable pattern traits defined in std.

regex-syntax/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ homepage = "https://github.com/rust-lang/regex"
99
description = "A regular expression parser."
1010

1111
[dev-dependencies]
12-
quickcheck = { version = "0.5", default-features = false }
13-
rand = "0.3.15"
12+
quickcheck = { version = "0.6", default-features = false }
13+
rand = "0.4"

0 commit comments

Comments
 (0)