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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
f9b5eb3a15
commit
dceed5a893
13
Cargo.lock
13
Cargo.lock
|
@ -3276,16 +3276,15 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "proptest"
|
name = "proptest"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70"
|
checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bit-set",
|
"bit-set",
|
||||||
"bitflags 1.3.2",
|
"bitflags 1.3.2",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"quick-error 2.0.1",
|
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
"rand_chacha 0.3.1",
|
"rand_chacha 0.3.1",
|
||||||
"rand_xorshift",
|
"rand_xorshift",
|
||||||
|
@ -3382,12 +3381,6 @@ version = "1.2.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "quick-error"
|
|
||||||
version = "2.0.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "quick-xml"
|
name = "quick-xml"
|
||||||
version = "0.26.0"
|
version = "0.26.0"
|
||||||
|
@ -3860,7 +3853,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
|
checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fnv",
|
"fnv",
|
||||||
"quick-error 1.2.3",
|
"quick-error",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"wait-timeout",
|
"wait-timeout",
|
||||||
]
|
]
|
||||||
|
|
|
@ -101,7 +101,7 @@ serde_json = { version = "1.0.95", optional = true }
|
||||||
zcash_address = { version = "0.2.1", optional = true }
|
zcash_address = { version = "0.2.1", optional = true }
|
||||||
|
|
||||||
# Optional testing dependencies
|
# 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 }
|
proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
rand = { version = "0.8.5", optional = true, package = "rand" }
|
rand = { version = "0.8.5", optional = true, package = "rand" }
|
||||||
|
@ -124,7 +124,7 @@ spandoc = "0.2.2"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
|
||||||
# Make the optional testing dependencies required
|
# Make the optional testing dependencies required
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
|
|
||||||
rand = { version = "0.8.5", package = "rand" }
|
rand = { version = "0.8.5", package = "rand" }
|
||||||
|
|
|
@ -65,7 +65,7 @@ zebra-chain = { path = "../zebra-chain" }
|
||||||
howudoin = { version = "0.1.2", optional = true }
|
howudoin = { version = "0.1.2", optional = true }
|
||||||
|
|
||||||
# Test-only dependencies
|
# 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 }
|
proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -76,7 +76,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
num-integer = "0.1.45"
|
num-integer = "0.1.45"
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
spandoc = "0.2.2"
|
spandoc = "0.2.2"
|
||||||
|
|
||||||
|
|
|
@ -59,13 +59,13 @@ howudoin = { version = "0.1.2", optional = true }
|
||||||
# tor-rtcompat = { version = "0.0.2", optional = true }
|
# tor-rtcompat = { version = "0.0.2", optional = true }
|
||||||
|
|
||||||
# proptest dependencies
|
# proptest dependencies
|
||||||
proptest = { version = "1.1.0", optional = true }
|
proptest = { version = "1.2.0", optional = true }
|
||||||
proptest-derive = { version = "0.3.0", optional = true }
|
proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain" }
|
zebra-chain = { path = "../zebra-chain" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
|
|
||||||
static_assertions = "1.1.0"
|
static_assertions = "1.1.0"
|
||||||
|
|
|
@ -61,7 +61,7 @@ rand = { version = "0.8.5", package = "rand", optional = true }
|
||||||
zcash_address = { version = "0.2.1", optional = true }
|
zcash_address = { version = "0.2.1", optional = true }
|
||||||
|
|
||||||
# Test-only feature proptest-impl
|
# 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-chain = { path = "../zebra-chain", features = ["json-conversion"] }
|
||||||
zebra-consensus = { path = "../zebra-consensus" }
|
zebra-consensus = { path = "../zebra-consensus" }
|
||||||
|
@ -73,7 +73,7 @@ zebra-state = { path = "../zebra-state" }
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
insta = { version = "1.29.0", features = ["redactions", "json", "ron"] }
|
insta = { version = "1.29.0", features = ["redactions", "json", "ron"] }
|
||||||
|
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
|
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.28.0", features = ["full", "tracing", "test-util"] }
|
tokio = { version = "1.28.0", features = ["full", "tracing", "test-util"] }
|
||||||
|
|
|
@ -66,7 +66,7 @@ howudoin = { version = "0.1.2", optional = true }
|
||||||
|
|
||||||
# test feature proptest-impl
|
# test feature proptest-impl
|
||||||
zebra-test = { path = "../zebra-test/", optional = true }
|
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 }
|
proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -81,7 +81,7 @@ spandoc = "0.2.2"
|
||||||
hex = { version = "0.4.3", features = ["serde"] }
|
hex = { version = "0.4.3", features = ["serde"] }
|
||||||
insta = { version = "1.29.0", features = ["ron"] }
|
insta = { version = "1.29.0", features = ["ron"] }
|
||||||
|
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
|
|
||||||
halo2 = { package = "halo2_proofs", version = "0.3.0" }
|
halo2 = { package = "halo2_proofs", version = "0.3.0" }
|
||||||
|
|
|
@ -12,7 +12,7 @@ hex = "0.4.3"
|
||||||
indexmap = "1.9.3"
|
indexmap = "1.9.3"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
insta = "1.29.0"
|
insta = "1.29.0"
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
once_cell = "1.17.1"
|
once_cell = "1.17.1"
|
||||||
rand = { version = "0.8.5", package = "rand" }
|
rand = { version = "0.8.5", package = "rand" }
|
||||||
regex = "1.8.2"
|
regex = "1.8.2"
|
||||||
|
|
|
@ -178,7 +178,7 @@ howudoin = { version = "0.1.2", features = ["term-line"], optional = true }
|
||||||
indicatif = { version = "0.17.3", optional = true }
|
indicatif = { version = "0.17.3", optional = true }
|
||||||
|
|
||||||
# test feature proptest-impl
|
# 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 }
|
proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
# test feature tokio-console
|
# test feature tokio-console
|
||||||
|
@ -212,7 +212,7 @@ tokio-stream = "0.1.14"
|
||||||
prost = "0.11.9"
|
prost = "0.11.9"
|
||||||
tonic = "0.9.2"
|
tonic = "0.9.2"
|
||||||
|
|
||||||
proptest = "1.1.0"
|
proptest = "1.2.0"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
|
|
||||||
# enable span traces and track caller in tests
|
# enable span traces and track caller in tests
|
||||||
|
|
Loading…
Reference in New Issue