From 7863fb10871c2397ee08cc45ae9db342ba3c631a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 12 Feb 2023 18:31:53 -0800
Subject: [PATCH] Bump proptest from 1.0.0 to 1.1.0 (#8063)
Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.0.0 to
1.1.0.
Commits
75c749e
bump version to 1.1.0
a7c75a1
Merge pull request #295
from proptest-rs/replays-dont-count-cases
a854d2e
[replays-dont-count-cases] persisted failures are not counted against
success...
f8eff50
Merge pull request #291
from schuelermine/fix/prop_assert_ne!
d382683
Merge pull request #294
from proptest-rs/fix-ci
ad0a4d3
[fix-ci] changed the line for where the error occurs
00f29af
Merge pull request #288
from proptest-rs/const-generic-arbitrary
a16853f
Fix prop_assert_ne! requiring import of prop_assert!
b513a32
Config : support disabling failure persistence via env var (#287)
7a94e16
note that PROPTEST_CASES and other env var requires the std feature (#262)
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually 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 +++++++++--
crates/nu-command/Cargo.toml | 2 +-
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 33fb6d531..5f054c4b5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3939,9 +3939,9 @@ dependencies = [
[[package]]
name = "proptest"
-version = "1.0.0"
+version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e0d9cc07f18492d879586c92b485def06bc850da3118075cd45d50e9c95b0e5"
+checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70"
dependencies = [
"bit-set",
"bitflags",
@@ -3955,6 +3955,7 @@ dependencies = [
"regex-syntax",
"rusty-fork",
"tempfile",
+ "unarray",
]
[[package]]
@@ -5425,6 +5426,12 @@ version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46b0c16eadfb312c7acd6970fc97d1f3152eb536714a2ff72ca09a92cae6fa67"
+[[package]]
+name = "unarray"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
+
[[package]]
name = "unicase"
version = "2.6.0"
diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml
index d05530670..600c0669a 100644
--- a/crates/nu-command/Cargo.toml
+++ b/crates/nu-command/Cargo.toml
@@ -164,7 +164,7 @@ nu-test-support = { path = "../nu-test-support", version = "0.75.1" }
dirs-next = "2.0.0"
hamcrest2 = "0.3.0"
-proptest = "1.0.0"
+proptest = "1.1.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rstest = { version = "0.15.0", default-features = false }