mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Trying to get CI/CD to produce firezone-windows-client.exe. Can't remember if I need both a PR and a draft release or just the draft release for that. --------- Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com> Co-authored-by: Jamil <jamilbk@users.noreply.github.com>
48 lines
1.6 KiB
TOML
48 lines
1.6 KiB
TOML
[workspace]
|
|
members = [
|
|
"connlib/clients/android",
|
|
"connlib/clients/apple",
|
|
"connlib/clients/shared",
|
|
"connlib/shared",
|
|
"connlib/tunnel",
|
|
"gateway",
|
|
"hello-world",
|
|
"linux-client",
|
|
"firezone-cli-utils",
|
|
"phoenix-channel",
|
|
"relay",
|
|
"windows-client/src-tauri",
|
|
]
|
|
|
|
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.52"
|
|
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 = { version = "0.24", features = ["tokio-runtime"] }
|
|
webrtc = "0.9"
|
|
futures-bounded = "0.2.1"
|
|
|
|
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-linux-client = { path = "linux-client"}
|
|
firezone-windows-client = { path = "windows-client/src-tauri"}
|
|
firezone-cli-utils = { path = "firezone-cli-utils"}
|
|
connlib-shared = { path = "connlib/shared"}
|
|
firezone-tunnel = { path = "connlib/tunnel"}
|
|
phoenix-channel = { path = "phoenix-channel"}
|
|
|
|
[patch.crates-io]
|
|
boringtun = { git = "https://github.com/cloudflare/boringtun", branch = "master" } # Contains unreleased patches we need (bump of x25519-dalek)
|
|
webrtc = { git = "https://github.com/firezone/webrtc", branch = "expose-new-endpoint" }
|
|
|
|
[profile.release]
|
|
strip = true
|