From 9866c1beed43ee683f64ee042e3965aea3181dde Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 31 Jul 2023 14:09:50 -0300
Subject: [PATCH] build(deps): bump test-strategy from 0.3.0 to 0.3.1 in /rust
(#1837)
Bumps [test-strategy](https://github.com/frozenlib/test-strategy) from
0.3.0 to 0.3.1.
Commits
19797fd
Version 0.3.1.
7a2705c
Made it possible to use #[proptest(dump)] instead of
#[proptest_dump].
c492d62
Add docuemnt for #[proptest(async = ...)].
839fe30
Use #[cfg(test)].
2b57ca7
Merge pull request #10
from niklaslong/clippy
5208cb2
Add test for using #[proptest] in areas not enclosed by
#[cfg(test)].
e258b67
Fix clippy unused field warning in proptest Args
structs.
8850131
Update expected compile error message.
5198884
Clippy.
fd49486
Support async fn test.
- 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>
---
rust/Cargo.lock | 18 +++++++++---------
rust/relay/Cargo.toml | 2 +-
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 3ffdbc0db..7f7ca5df2 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -3007,25 +3007,25 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "structmeta"
-version = "0.1.6"
+version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "104842d6278bf64aa9d2f182ba4bde31e8aec7a131d29b7f444bb9b344a09e2a"
+checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
dependencies = [
"proc-macro2",
"quote",
"structmeta-derive",
- "syn 1.0.109",
+ "syn 2.0.25",
]
[[package]]
name = "structmeta-derive"
-version = "0.1.6"
+version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "24420be405b590e2d746d83b01f09af673270cf80e9b003a5fa7b651c58c7d93"
+checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
dependencies = [
"proc-macro2",
"quote",
- "syn 1.0.109",
+ "syn 2.0.25",
]
[[package]]
@@ -3186,14 +3186,14 @@ dependencies = [
[[package]]
name = "test-strategy"
-version = "0.3.0"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61348cf95c0dfa12f0b6155f5b564d2806f518620a28263280ae357b41c96b4a"
+checksum = "b8361c808554228ad09bfed70f5c823caf8a3450b6881cc3a38eb57e8c08c1d9"
dependencies = [
"proc-macro2",
"quote",
"structmeta",
- "syn 1.0.109",
+ "syn 2.0.25",
]
[[package]]
diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml
index 08a05e8e9..f2c1d0d83 100644
--- a/rust/relay/Cargo.toml
+++ b/rust/relay/Cargo.toml
@@ -22,7 +22,7 @@ sha2 = "0.10.6"
base64 = "0.21.0"
once_cell = "1.17.1"
proptest = { version = "1.2.0", optional = true }
-test-strategy = "0.3.0"
+test-strategy = "0.3.1"
derive_more = { version = "0.99.17", features = ["from"] }
uuid = { version = "1.4.1", features = ["v4"] }
phoenix-channel = { path = "../phoenix-channel" }