mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
build(deps): Bump etherparse from 0.15.0 to 0.16.0 in /rust (#7167)
Bumps [etherparse](https://github.com/JulianSchmid/etherparse) from 0.15.0 to 0.16.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/JulianSchmid/etherparse/releases">etherparse's releases</a>.</em></p> <blockquote> <h2>v0.16.0 Add IP Packet Defragmentation Support</h2> <h2>What's Changed</h2> <ul> <li>typo by <a href="https://github.com/ugur-a"><code>@ugur-a</code></a> in <a href="https://redirect.github.com/JulianSchmid/etherparse/pull/106">JulianSchmid/etherparse#106</a></li> <li>Add etherparse-defrag by <a href="https://github.com/JulianSchmid"><code>@JulianSchmid</code></a> in <a href="https://redirect.github.com/JulianSchmid/etherparse/pull/92">JulianSchmid/etherparse#92</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ugur-a"><code>@ugur-a</code></a> made their first contribution in <a href="https://redirect.github.com/JulianSchmid/etherparse/pull/106">JulianSchmid/etherparse#106</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/JulianSchmid/etherparse/compare/v0.15.0...v0.16.0">https://github.com/JulianSchmid/etherparse/compare/v0.15.0...v0.16.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/JulianSchmid/etherparse/blob/master/changelog.md">etherparse's changelog</a>.</em></p> <blockquote> <h1>Changelog:</h1> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="93c7f0bb13"><code>93c7f0b</code></a> Resolved clippy warnings</li> <li><a href="447c592aab"><code>447c592</code></a> Increment proptest crate version</li> <li><a href="00c04f7dbe"><code>00c04f7</code></a> Resolved clippy warning</li> <li><a href="b6d98e5100"><code>b6d98e5</code></a> Extended tests for frag pool</li> <li><a href="0a58fa5e64"><code>0a58fa5</code></a> Corrected fragment reconstruction</li> <li><a href="74739e5a4f"><code>74739e5</code></a> Correct ip defrag pool new return type</li> <li><a href="c0741f51f3"><code>c0741f5</code></a> Applying rust fmt & add return_buf to ip defrag pool</li> <li><a href="31c8e84f4b"><code>31c8e84</code></a> Update proptest and mark some tests as not relevant for miri</li> <li><a href="29894ab462"><code>29894ab</code></a> Further work on defragmentation</li> <li><a href="9464a0f363"><code>9464a0f</code></a> Adapt readme to defrag module</li> <li>Additional commits viewable in <a href="https://github.com/JulianSchmid/etherparse/compare/v0.15.0...v0.16.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:
4
rust/Cargo.lock
generated
4
rust/Cargo.lock
generated
@@ -1855,9 +1855,9 @@ checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f"
|
||||
|
||||
[[package]]
|
||||
name = "etherparse"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "21696e6dfe1057a166a042c6d27b89a46aad2ee1003e6e1e03c49d54fd3270d7"
|
||||
checksum = "b8d8a704b617484e9d867a0423cd45f7577f008c4068e2e33378f8d3860a6d73"
|
||||
dependencies = [
|
||||
"arrayvec",
|
||||
]
|
||||
|
||||
@@ -11,7 +11,7 @@ proptest = ["dep:proptest"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.86"
|
||||
etherparse = "0.15"
|
||||
etherparse = "0.16"
|
||||
proptest = { version = "1", optional = true }
|
||||
thiserror = "1"
|
||||
tracing = "0.1"
|
||||
|
||||
Reference in New Issue
Block a user