mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
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>
109 lines
4.0 KiB
TOML
109 lines
4.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"bin-shared",
|
|
"connlib/clients/android",
|
|
"connlib/clients/apple",
|
|
"connlib/clients/shared",
|
|
"connlib/shared",
|
|
"connlib/snownet",
|
|
"connlib/tunnel",
|
|
"gateway",
|
|
"gui-client/src-tauri",
|
|
"headless-client",
|
|
"ip-packet",
|
|
"logging",
|
|
"phoenix-channel",
|
|
"relay",
|
|
"socket-factory",
|
|
"tests/gui-smoke-test",
|
|
"tests/http-test-server",
|
|
"tun"
|
|
]
|
|
|
|
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.57"
|
|
backoff = { version = "0.4", features = ["tokio"] }
|
|
tracing = { version = "0.1.40" }
|
|
tracing-subscriber = { version = "0.3.17", features = ["parking_lot"] }
|
|
secrecy = "0.8"
|
|
hickory-resolver = { git = "https://github.com/hickory-dns/hickory-dns", rev = "a3669bd80f3f7b97f0c301c15f1cba6368d97b63", features = ["tokio-runtime"] }
|
|
hickory-proto = { git = "https://github.com/hickory-dns/hickory-dns", rev = "a3669bd80f3f7b97f0c301c15f1cba6368d97b63" }
|
|
str0m = { version = "0.6.2", default-features = false }
|
|
futures-bounded = "0.2.1"
|
|
domain = { version = "0.10", features = ["serde"] }
|
|
dns-lookup = "2.0"
|
|
tokio-tungstenite = "0.23.1"
|
|
rtnetlink = { version = "0.14.1", default-features = false, features = ["tokio_socket"] }
|
|
tokio = "1.39"
|
|
rustls = { version = "0.23.10", default-features = false, features = ["ring"] }
|
|
|
|
connlib-client-android = { path = "connlib/clients/android" }
|
|
connlib-client-apple = { path = "connlib/clients/apple" }
|
|
connlib-client-shared = { path = "connlib/clients/shared" }
|
|
firezone-gateway = { path = "gateway" }
|
|
firezone-headless-client = { path = "headless-client" }
|
|
firezone-gui-client = { path = "gui-client/src-tauri" }
|
|
firezone-logging = { path = "logging" }
|
|
firezone-bin-shared = { path = "bin-shared" }
|
|
snownet = { path = "connlib/snownet" }
|
|
firezone-relay = { path = "relay" }
|
|
connlib-shared = { path = "connlib/shared" }
|
|
firezone-tunnel = { path = "connlib/tunnel" }
|
|
phoenix-channel = { path = "phoenix-channel" }
|
|
ip-packet = { path = "ip-packet" }
|
|
socket-factory = { path = "socket-factory" }
|
|
tun = { path = "tun" }
|
|
socket2 = { version = "0.5" }
|
|
|
|
[workspace.lints.clippy]
|
|
dbg_macro = "warn"
|
|
print_stdout = "warn"
|
|
print_stderr = "warn"
|
|
unnecessary_wraps = "warn"
|
|
unused_async = "warn"
|
|
wildcard_enum_match_arm = "warn" # Ensures we match on all combinations of `Poll`, preventing erroneous suspensions.
|
|
redundant_else = "warn"
|
|
redundant_clone = "warn"
|
|
|
|
[workspace.lints.rustdoc]
|
|
private-intra-doc-links = "allow" # We don't publish any of our docs but want to catch dead links.
|
|
|
|
[patch.crates-io]
|
|
boringtun = { git = "https://github.com/cloudflare/boringtun", branch = "master" }
|
|
str0m = { git = "https://github.com/algesten/str0m", branch = "main" }
|
|
ip_network = { git = "https://github.com/JakubOnderka/ip_network", branch = "master" } # Waiting for release.
|
|
ip_network_table = { git = "https://github.com/edmonds/ip_network_table", branch = "some-useful-traits" } # For `Debug` and `Clone`
|
|
proptest = { git = "https://github.com/proptest-rs/proptest", branch = "master" }
|
|
proptest-state-machine = { git = "https://github.com/proptest-rs/proptest", branch = "master" }
|
|
tracing-stackdriver = { git = "https://github.com/thomaseizinger/tracing-stackdriver", branch = "deps/bump-otel-0.23" } # Waiting for release.
|
|
|
|
[profile.release]
|
|
strip = true
|
|
|
|
# Full link-time optimization. Reduces binaries by up to 3x on some platforms.
|
|
lto = "fat"
|
|
|
|
# Increases the compiler's ability to produce smaller, optimized code
|
|
# at the expense of compilation time
|
|
codegen-units = 1
|
|
|
|
# Override build settings just for the GUI client, so we get a pdb/dwp
|
|
# Cargo ignores profile settings if they're not in the workspace's Cargo.toml
|
|
[profile.dev.package.firezone-gui-client]
|
|
debug = "full"
|
|
split-debuginfo = "packed"
|
|
strip = "none"
|
|
|
|
[profile.release.package.firezone-gui-client]
|
|
debug = "full"
|
|
split-debuginfo = "packed"
|
|
strip = "none"
|
|
|
|
# Override build settings for the relay, so we can capture flamegraphs
|
|
[profile.release.package.firezone-relay]
|
|
debug = "full"
|