Bump proptest from 1.3.1 to 1.4.0 (#3102)

Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.3.1 to 1.4.0.
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/proptest-rs/proptest/compare/v1.3.1...v1.4.0)

---
updated-dependencies:
- dependency-name: proptest
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2023-11-28 07:48:06 +01:00
committed by GitHub
parent 25097090de
commit fa5c64bea0
3 changed files with 11 additions and 5 deletions

12
Cargo.lock generated
View File

@@ -3535,9 +3535,9 @@ dependencies = [
[[package]]
name = "proptest"
version = "1.3.1"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e"
checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf"
dependencies = [
"bit-set",
"bit-vec",
@@ -3547,7 +3547,7 @@ dependencies = [
"rand 0.8.5",
"rand_chacha 0.3.1",
"rand_xorshift",
"regex-syntax 0.7.2",
"regex-syntax 0.8.2",
"rusty-fork",
"tempfile",
"unarray",
@@ -4001,6 +4001,12 @@ version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
[[package]]
name = "regex-syntax"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]]
name = "relative-path"
version = "1.8.0"

View File

@@ -19,7 +19,7 @@ rmp-serde = "~1.1"
rand_distr = "0.4.3"
walkdir = "2.4.0"
rstest = "0.18.2"
proptest = "1.3.1"
proptest = "1.4.0"
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
pprof = { version = "0.12", features = ["flamegraph", "prost-codec"] }

View File

@@ -13,7 +13,7 @@ tracing = ["dep:tracing", "api/tracing", "collection/tracing", "segment/tracing"
[dev-dependencies]
tempfile = "3.8.1"
proptest = "1.2.0"
proptest = "1.4.0"
env_logger = "0.10.1"
[dependencies]