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.1 to 0.4.0 in /rust (#7308)
Bumps [test-strategy](https://github.com/frozenlib/test-strategy) from 0.3.1 to 0.4.0. <details> <summary>Commits</summary> <ul> <li><a href="c683eb3cf6"><code>c683eb3</code></a> Version 0.4.0.</li> <li><a href="17706bcd1c"><code>17706bc</code></a> Update MSRV to 1.70.0.</li> <li><a href="90a5efbf00"><code>90a5efb</code></a> Update dependencies.</li> <li><a href="cff2ede71f"><code>cff2ede</code></a> Changed the strategy generated by <code>#[filter(...)]</code> to reduce `Too many local ...</li> <li><a href="34cc6d2545"><code>34cc6d2</code></a> Update expected compile error message.</li> <li><a href="a4427e2d98"><code>a4427e2</code></a> Update CI settings.</li> <li><a href="ecb7dbae04"><code>ecb7dba</code></a> Clippy.</li> <li><a href="637f29e9c8"><code>637f29e</code></a> Made it so an error occurs when an unsupported attribute is specified for enu...</li> <li><a href="6d66057bb0"><code>6d66057</code></a> Use <code>test</code> instead of <code>check</code> with <code>cargo hack --rust-version</code>.</li> <li><a href="cee2ebbfe6"><code>cee2ebb</code></a> Fix CI settings.</li> <li>Additional commits viewable in <a href="https://github.com/frozenlib/test-strategy/compare/v0.3.1...v0.4.0">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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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> Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
This commit is contained in:
12
rust/Cargo.lock
generated
12
rust/Cargo.lock
generated
@@ -6084,9 +6084,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
||||
|
||||
[[package]]
|
||||
name = "structmeta"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
|
||||
checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@@ -6096,9 +6096,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "structmeta-derive"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
||||
checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@@ -6691,9 +6691,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "test-strategy"
|
||||
version = "0.3.1"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b8361c808554228ad09bfed70f5c823caf8a3450b6881cc3a38eb57e8c08c1d9"
|
||||
checksum = "2bf41af45e3f54cc184831d629d41d5b2bda8297e29c81add7ae4f362ed5e01b"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
||||
@@ -48,7 +48,7 @@ ip-packet = { workspace = true, features = ["proptest"] }
|
||||
proptest-state-machine = "0.3"
|
||||
rand = "0.8"
|
||||
test-case = "3.3.1"
|
||||
test-strategy = "0.3.1"
|
||||
test-strategy = "0.4.0"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
|
||||
[[bench]]
|
||||
|
||||
@@ -17,7 +17,7 @@ thiserror = "1"
|
||||
tracing = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
test-strategy = "0.3.1"
|
||||
test-strategy = "0.4.0"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
@@ -45,7 +45,7 @@ uuid = { version = "1.10.0", features = ["v4"] }
|
||||
[dev-dependencies]
|
||||
difference = "2.0.0"
|
||||
env_logger = "0.11.3"
|
||||
test-strategy = "0.3.1"
|
||||
test-strategy = "0.4.0"
|
||||
|
||||
[[test]]
|
||||
name = "regression"
|
||||
|
||||
Reference in New Issue
Block a user