From 6aaa32a72c4031752d8fd6b8115a1671831cf795 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 1 Jun 2023 16:23:46 +0000
Subject: [PATCH] Bump proptest from 1.1.0 to 1.2.0 (#2627)
Bumps [proptest](/~https://github.com/proptest-rs/proptest) from 1.1.0 to
1.2.0.
Commits
c65b6aa
Changelog : backfill changelogs
fd43fcc
bump version to 1.2.0
5670183
Merge pull request #324
from tzemanovic/tomas/sm-prerequisites
b88e9ff
Merge pull request #318
from tzemanovic/tomas/env-vars-config-override
18ca1af
[Fix] NonZero : only impl Arbitrary for 128-bit NonZero nums in non-wasm
targ...
6b4df75
proptest/changelog: add #324
fb2d578
make num sampling functions public
6eb7574
make SizeRange methods public
a6bc664
make VarBitSet
public
22672a6
changelog: add #318
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=proptest&package-manager=cargo&previous-version=1.1.0&new-version=1.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 11 ++---------
src/core/Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 10 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 307560e2e1..4383ab0620 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1064,15 +1064,14 @@ 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 = [
"bitflags",
"byteorder",
"lazy_static",
"num-traits",
- "quick-error",
"rand",
"rand_chacha",
"rand_xorshift",
@@ -1140,12 +1139,6 @@ dependencies = [
"syn 1.0.104",
]
-[[package]]
-name = "quick-error"
-version = "2.0.1"
-source = "registry+/~https://github.com/rust-lang/crates.io-index"
-checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
-
[[package]]
name = "quote"
version = "1.0.26"
diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml
index ac701f9daf..ae6fbd1b39 100644
--- a/src/core/Cargo.toml
+++ b/src/core/Cargo.toml
@@ -55,7 +55,7 @@ ouroboros = "0.15.6"
assert_matches = "1.3.0"
criterion = "0.5.1"
needletail = { version = "0.5.1", default-features = false }
-proptest = { version = "1.1.0", default-features = false, features = ["std"]}
+proptest = { version = "1.2.0", default-features = false, features = ["std"]}
rand = "0.8.2"
getrandom = { version = "0.2", features = ["js"] }
tempfile = "3.5.0"