diff --git a/Cargo.lock b/Cargo.lock index a9db971e64..b9ad30e6c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -935,18 +935,17 @@ dependencies = [ [[package]] name = "proptest" -version = "1.2.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65" +checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e" dependencies = [ - "bitflags 1.3.2", - "byteorder", + "bitflags 2.3.3", "lazy_static", "num-traits", "rand", "rand_chacha", "rand_xorshift", - "regex-syntax", + "regex-syntax 0.7.5", "unarray", ] @@ -1033,7 +1032,7 @@ version = "1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" dependencies = [ - "regex-syntax", + "regex-syntax 0.6.26", ] [[package]] @@ -1048,6 +1047,12 @@ version = "0.6.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" +[[package]] +name = "regex-syntax" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" + [[package]] name = "rustix" version = "0.37.20" diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index e70bb45c2c..0cd59b312e 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -56,7 +56,7 @@ ouroboros = "0.18.0" assert_matches = "1.3.0" criterion = "0.5.1" needletail = { version = "0.5.1", default-features = false } -proptest = { version = "1.2.0", default-features = false, features = ["std"]} +proptest = { version = "1.3.1", default-features = false, features = ["std"]} rand = "0.8.2" tempfile = "3.7.1"