mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
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. <details> <summary>Commits</summary> <ul> <li><a href="19797fdf2b"><code>19797fd</code></a> Version 0.3.1.</li> <li><a href="7a2705c71d"><code>7a2705c</code></a> Made it possible to use <code>#[proptest(dump)]</code> instead of <code>#[proptest_dump]</code>.</li> <li><a href="c492d62a51"><code>c492d62</code></a> Add docuemnt for <code>#[proptest(async = ...)]</code>.</li> <li><a href="839fe30cc6"><code>839fe30</code></a> Use <code>#[cfg(test)]</code>.</li> <li><a href="2b57ca7262"><code>2b57ca7</code></a> Merge pull request <a href="https://redirect.github.com/frozenlib/test-strategy/issues/10">#10</a> from niklaslong/clippy</li> <li><a href="5208cb2bfa"><code>5208cb2</code></a> Add test for using <code>#[proptest]</code> in areas not enclosed by <code>#[cfg(test)]</code>.</li> <li><a href="e258b67f9f"><code>e258b67</code></a> Fix clippy unused field warning in proptest <code>Args</code> structs.</li> <li><a href="885013160c"><code>8850131</code></a> Update expected compile error message.</li> <li><a href="5198884aa1"><code>5198884</code></a> Clippy.</li> <li><a href="fd49486cb2"><code>fd49486</code></a> Support async fn test.</li> <li>Additional commits viewable in <a href="https://github.com/frozenlib/test-strategy/compare/v0.3.0...v0.3.1">compare view</a></li> </ul> </details> <br /> [](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) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> 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:
18
rust/Cargo.lock
generated
18
rust/Cargo.lock
generated
@@ -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]]
|
||||
|
||||
@@ -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" }
|
||||
|
||||
Reference in New Issue
Block a user