From 2e30596a25c6a9242036a65abdee38daafd854d2 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 9 Oct 2023 20:02:42 -0300
Subject: [PATCH] build(deps): Bump proptest from 1.2.0 to 1.3.1 in /rust
(#2281)
Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.2.0 to
1.3.1.
Commits
0b4ffe8
[Release] 1.3.1 -- fix for incompatible bit-set/bit-vec versions (#375)
99bdf24
[Release] 1.3.0 (#373)
7bfc889
Merge pull request #357
from tzemanovic/tomas/clear-break-dead-code
eb9db9d
Merge branch 'master' into tomas/clear-break-dead-code
370b3a0
Permit use of (?-u) in byte-regex strategies (#336)
(#337)
e395e8c
Add PathBuf Arbitrary impl with tests (#368)
fcccad0
Book tips and best practices (#367)
fc3be95
Merge pull request #355
from tzemanovic/tomas/fix-sm-logs
7292965
Merge pull request #360
from psychon/remove-byteorder
466d59d
[proptest] silence clippy::arc_with_non_send_sync warning with
prop_oneof (#363)
- 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 show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore ` will
remove the ignore condition of the specified dependency and ignore
conditions
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gabi
---
rust/Cargo.lock | 10 +++++-----
rust/relay/Cargo.toml | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 2bb0903d4..360564023 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -2595,19 +2595,19 @@ dependencies = [
[[package]]
name = "proptest"
-version = "1.2.0"
+version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4e35c06b98bf36aba164cc17cb25f7e232f5c4aeea73baa14b8a9f0d92dbfa65"
+checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e"
dependencies = [
"bit-set",
- "bitflags 1.3.2",
- "byteorder",
+ "bit-vec",
+ "bitflags 2.4.0",
"lazy_static",
"num-traits",
"rand",
"rand_chacha",
"rand_xorshift",
- "regex-syntax 0.6.29",
+ "regex-syntax 0.7.5",
"rusty-fork",
"tempfile",
"unarray",
diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml
index 562a11d75..18f75ab34 100644
--- a/rust/relay/Cargo.toml
+++ b/rust/relay/Cargo.toml
@@ -28,7 +28,7 @@ bytes = "1.4.0"
sha2 = "0.10.8"
base64 = "0.21.4"
once_cell = "1.17.1"
-proptest = { version = "1.2.0", optional = true }
+proptest = { version = "1.3.1", optional = true }
test-strategy = "0.3.1"
derive_more = { version = "0.99.17", features = ["from"] }
uuid = { version = "1.4.1", features = ["v4"] }