mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
build(deps): Bump swift-bridge from 0.1.55 to 0.1.57 in /rust (#6441)
Bumps [swift-bridge](https://github.com/chinedufn/swift-bridge) from 0.1.55 to 0.1.57. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/chinedufn/swift-bridge/releases">swift-bridge's releases</a>.</em></p> <blockquote> <h2>0.1.57</h2> <ul> <li> <p>Support Failable initializers. <a href="https://redirect.github.com/chinedufn/swift-bridge/issues/276">#276</a> (thanks <a href="https://github.com/niwakadev"><code>@niwakadev</code></a>)</p> <pre lang="rust"><code>// Rust <p>#[swift_bridge::bridge] mod ffi { extern "Rust" { #[swift_bridge(Equatable)] type FailableInitType;</p> <pre><code> #[swift_bridge(init)] fn new() -&gt; Option&lt;FailableInitType&gt;; } </code></pre> <p>} </code></pre></p> <pre lang="swift"><code>// Swift let failableInitType = FailableInitType() if failableInitType == nil { // ... } else { // ... } </code></pre> </li> <li> <p>Support Throwing initializers <a href="https://redirect.github.com/chinedufn/swift-bridge/issues/287">#287</a> (thanks <a href="https://github.com/niwakadev"><code>@niwakadev</code></a>)</p> <pre lang="rust"><code>// Rust <p>#[swift_bridge::bridge] mod ffi { enum ResultTransparentEnum { NamedField { data: i32 }, UnnamedFields(u8, String), NoFields, } extern "Rust" { type ThrowingInitializer; #[swift_bridge(init)] fn new(succeed: bool) -> Result<ThrowingInitializer, ResultTransparentEnum>; fn val(&self) -> i32; } } </code></pre></p> <pre lang="swift"><code>// Swift do { </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="1b547a5f0c"><code>1b547a5</code></a> Support throwing initializers (<a href="https://redirect.github.com/chinedufn/swift-bridge/issues/287">#287</a>)</li> <li><a href="495611ba39"><code>495611b</code></a> Support failable initializers (<a href="https://redirect.github.com/chinedufn/swift-bridge/issues/276">#276</a>)</li> <li><a href="d2c09e2e60"><code>d2c09e2</code></a> 0.1.56</li> <li><a href="d3d2da4e01"><code>d3d2da4</code></a> Upgrade macOS CI runners (<a href="https://redirect.github.com/chinedufn/swift-bridge/issues/285">#285</a>)</li> <li><a href="37ac2c2627"><code>37ac2c2</code></a> Apply input module visibility to output module (<a href="https://redirect.github.com/chinedufn/swift-bridge/issues/284">#284</a>)</li> <li><a href="34ce1ffb6b"><code>34ce1ff</code></a> Suppress dead_code warning when returning <code>-> Result\<*, TransparentType></code> (<a href="https://redirect.github.com/chinedufn/swift-bridge/issues/278">#278</a>)</li> <li><a href="717fcef70d"><code>717fcef</code></a> Add parse-bridges CLI subcommand (<a href="https://redirect.github.com/chinedufn/swift-bridge/issues/274">#274</a>)</li> <li><a href="ef01d21001"><code>ef01d21</code></a> 0.1.55</li> <li>See full diff in <a href="https://github.com/chinedufn/swift-bridge/compare/0.1.55...0.1.57">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>
This commit is contained in:
8
rust/Cargo.lock
generated
8
rust/Cargo.lock
generated
@@ -5741,9 +5741,9 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
|
||||
|
||||
[[package]]
|
||||
name = "swift-bridge"
|
||||
version = "0.1.55"
|
||||
version = "0.1.57"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6180c668892926e0bc19d75a81b0ee2fdce3ab15ff062a61b3ce9b4d562eac1b"
|
||||
checksum = "dca240710850bfee64549b2f86cd2c6fbbb3de64ce5f3da764cb1ecec5c6cc37"
|
||||
dependencies = [
|
||||
"swift-bridge-build",
|
||||
"swift-bridge-macro",
|
||||
@@ -5774,9 +5774,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swift-bridge-macro"
|
||||
version = "0.1.55"
|
||||
version = "0.1.57"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e69ec9898b591cfcf473a584e98b54517400dcc67b0d3f8fdf2a099ce7971e3a"
|
||||
checksum = "9c9b93285ca24a3fd596ecd316b217c4a0fd78c629e09efb1b4990fab1478183"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
||||
@@ -25,7 +25,7 @@ resolver = "2"
|
||||
[workspace.dependencies]
|
||||
boringtun = { version = "0.6", default-features = false }
|
||||
chrono = { version = "0.4", default-features = false, features = ["std", "clock", "oldtime", "serde"] }
|
||||
swift-bridge = "0.1.55"
|
||||
swift-bridge = "0.1.57"
|
||||
backoff = { version = "0.4", features = ["tokio"] }
|
||||
tracing = { version = "0.1.40" }
|
||||
tracing-subscriber = { version = "0.3.17", features = ["parking_lot"] }
|
||||
|
||||
Reference in New Issue
Block a user