From 799bf9a57ba5eb17eb8e543b895c06e1d81ea56e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 11:26:07 +0000 Subject: [PATCH] build(deps): bump proptest from 1.2.0 to 1.3.0 Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.2.0 to 1.3.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.2.0...v1.3.0) --- updated-dependencies: - dependency-name: proptest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- primitives/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7ed9b1f01..ce673a9139 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5819,19 +5819,19 @@ dependencies = [ [[package]] name = "proptest" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65" +checksum = "59d6ddf4877c954130eb46772d1efba4ec0f5b3ee3189925d6a78ee61c41227f" dependencies = [ "bit-set", - "bitflags 1.3.2", - "byteorder", + "bit-vec", + "bitflags 2.3.3", "lazy_static", "num-traits", "rand 0.8.5", "rand_chacha 0.3.1", "rand_xorshift", - "regex-syntax 0.6.29", + "regex-syntax 0.7.2", "rusty-fork", "tempfile", "unarray", diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index b771354cdc..2edc8da6be 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -28,7 +28,7 @@ tracing.workspace = true [dev-dependencies] tracing = { workspace = true } -proptest = "1.2.0" +proptest = "1.3.0" rand = "0.8.5" runtime-utils = { workspace = true, features = ["std"] }