From dceed5a893cc56fe4a45c364689f3ad503c5b417 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 20:44:16 +0000 Subject: [PATCH] build(deps): bump proptest from 1.1.0 to 1.2.0 (#6758) Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.1.0 to 1.2.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.1.0...v1.2.0) --- updated-dependencies: - dependency-name: proptest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 13 +++---------- zebra-chain/Cargo.toml | 4 ++-- zebra-consensus/Cargo.toml | 4 ++-- zebra-network/Cargo.toml | 4 ++-- zebra-rpc/Cargo.toml | 4 ++-- zebra-state/Cargo.toml | 4 ++-- zebra-test/Cargo.toml | 2 +- zebrad/Cargo.toml | 4 ++-- 8 files changed, 16 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00e8a09b..5594fc11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3276,16 +3276,15 @@ dependencies = [ [[package]] name = "proptest" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70" +checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65" dependencies = [ "bit-set", "bitflags 1.3.2", "byteorder", "lazy_static", "num-traits", - "quick-error 2.0.1", "rand 0.8.5", "rand_chacha 0.3.1", "rand_xorshift", @@ -3382,12 +3381,6 @@ version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" -[[package]] -name = "quick-error" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" - [[package]] name = "quick-xml" version = "0.26.0" @@ -3860,7 +3853,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" dependencies = [ "fnv", - "quick-error 1.2.3", + "quick-error", "tempfile", "wait-timeout", ] diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 760cfc7e..ee5c3627 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -101,7 +101,7 @@ serde_json = { version = "1.0.95", optional = true } zcash_address = { version = "0.2.1", optional = true } # Optional testing dependencies -proptest = { version = "1.1.0", optional = true } +proptest = { version = "1.2.0", optional = true } proptest-derive = { version = "0.3.0", optional = true } rand = { version = "0.8.5", optional = true, package = "rand" } @@ -124,7 +124,7 @@ spandoc = "0.2.2" tracing = "0.1.37" # Make the optional testing dependencies required -proptest = "1.1.0" +proptest = "1.2.0" proptest-derive = "0.3.0" rand = { version = "0.8.5", package = "rand" } diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 885b3f82..cabd5077 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -65,7 +65,7 @@ zebra-chain = { path = "../zebra-chain" } howudoin = { version = "0.1.2", optional = true } # Test-only dependencies -proptest = { version = "1.1.0", optional = true } +proptest = { version = "1.2.0", optional = true } proptest-derive = { version = "0.3.0", optional = true } [dev-dependencies] @@ -76,7 +76,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } hex = "0.4.3" num-integer = "0.1.45" -proptest = "1.1.0" +proptest = "1.2.0" proptest-derive = "0.3.0" spandoc = "0.2.2" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 75ab5a80..7e1a2c7e 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -59,13 +59,13 @@ howudoin = { version = "0.1.2", optional = true } # tor-rtcompat = { version = "0.0.2", optional = true } # proptest dependencies -proptest = { version = "1.1.0", optional = true } +proptest = { version = "1.2.0", optional = true } proptest-derive = { version = "0.3.0", optional = true } zebra-chain = { path = "../zebra-chain" } [dev-dependencies] -proptest = "1.1.0" +proptest = "1.2.0" proptest-derive = "0.3.0" static_assertions = "1.1.0" diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 67d17b91..fae51928 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -61,7 +61,7 @@ rand = { version = "0.8.5", package = "rand", optional = true } zcash_address = { version = "0.2.1", optional = true } # Test-only feature proptest-impl -proptest = { version = "1.1.0", optional = true } +proptest = { version = "1.2.0", optional = true } zebra-chain = { path = "../zebra-chain", features = ["json-conversion"] } zebra-consensus = { path = "../zebra-consensus" } @@ -73,7 +73,7 @@ zebra-state = { path = "../zebra-state" } [dev-dependencies] insta = { version = "1.29.0", features = ["redactions", "json", "ron"] } -proptest = "1.1.0" +proptest = "1.2.0" thiserror = "1.0.40" tokio = { version = "1.28.0", features = ["full", "tracing", "test-util"] } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 3fb94021..798d6404 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -66,7 +66,7 @@ howudoin = { version = "0.1.2", optional = true } # test feature proptest-impl zebra-test = { path = "../zebra-test/", optional = true } -proptest = { version = "1.1.0", optional = true } +proptest = { version = "1.2.0", optional = true } proptest-derive = { version = "0.3.0", optional = true } [dev-dependencies] @@ -81,7 +81,7 @@ spandoc = "0.2.2" hex = { version = "0.4.3", features = ["serde"] } insta = { version = "1.29.0", features = ["ron"] } -proptest = "1.1.0" +proptest = "1.2.0" proptest-derive = "0.3.0" halo2 = { package = "halo2_proofs", version = "0.3.0" } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index bf74e648..0dc67648 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -12,7 +12,7 @@ hex = "0.4.3" indexmap = "1.9.3" lazy_static = "1.4.0" insta = "1.29.0" -proptest = "1.1.0" +proptest = "1.2.0" once_cell = "1.17.1" rand = { version = "0.8.5", package = "rand" } regex = "1.8.2" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index cef9f440..ed79a696 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -178,7 +178,7 @@ howudoin = { version = "0.1.2", features = ["term-line"], optional = true } indicatif = { version = "0.17.3", optional = true } # test feature proptest-impl -proptest = { version = "1.1.0", optional = true } +proptest = { version = "1.2.0", optional = true } proptest-derive = { version = "0.3.0", optional = true } # test feature tokio-console @@ -212,7 +212,7 @@ tokio-stream = "0.1.14" prost = "0.11.9" tonic = "0.9.2" -proptest = "1.1.0" +proptest = "1.2.0" proptest-derive = "0.3.0" # enable span traces and track caller in tests