mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
The `connlib-shared` crate has become a bit of a dependency magnet without a clear purpose. It hosts utilities like `get_user_agent`, messages for the client and gateway to communicate with the portal and domain types like `ResourceId`. To create a better dependency structure in our workspace, we repurpose `connlib-shared` as a `connlib-model` crate. Its purpose is to host domain-specific model types that multiple crates may want to use. For that purpose, we rename the `callbacks::ResourceDescription` type to `ResourceView`, designating that this is a _view_ onto a resource as seen by `connlib`. The message types which currently double up as connlib-internal model thus become an implementation detail of `firezone-tunnel` and shouldn't be used for anything else. --------- Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com> Co-authored-by: Reactor Scram <ReactorScram@users.noreply.github.com>
71 lines
2.4 KiB
TOML
71 lines
2.4 KiB
TOML
[package]
|
|
name = "firezone-gui-client"
|
|
# mark:next-gui-version
|
|
version = "1.3.8"
|
|
description = "Firezone"
|
|
edition = "2021"
|
|
default-run = "firezone-gui-client"
|
|
authors = ["Firezone, Inc."]
|
|
|
|
[build-dependencies]
|
|
anyhow = { version = "1.0" }
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0" }
|
|
atomicwrites = { workspace = true }
|
|
chrono = { workspace = true }
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
connlib-client-shared = { workspace = true }
|
|
connlib-model = { workspace = true }
|
|
firezone-bin-shared = { workspace = true }
|
|
firezone-gui-client-common = { path = "../src-common" }
|
|
firezone-headless-client = { path = "../../headless-client" }
|
|
firezone-logging = { workspace = true }
|
|
firezone-telemetry = { workspace = true }
|
|
native-dialog = "0.7.0"
|
|
rand = "0.8.5"
|
|
rustls = { workspace = true }
|
|
sadness-generator = "0.6.0"
|
|
secrecy = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
subtle = "2.5.0"
|
|
# `notification` is not needed on Windows, but if we remove it, Tauri's bundler will just add it back. #6597
|
|
tauri = { version = "1.7.1", features = ["dialog", "icon-png", "notification", "shell-open-api", "system-tray"] }
|
|
tauri-runtime = "0.14.5"
|
|
tauri-utils = "1.6.0"
|
|
thiserror = { version = "1.0", default-features = false }
|
|
tokio = { workspace = true, features = ["signal", "time", "macros", "rt", "rt-multi-thread"] }
|
|
tokio-util = { version = "0.7.11", features = ["codec"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
url = { version = "2.5.2", features = ["serde"] }
|
|
uuid = { version = "1.10.0", features = ["v4"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
dirs = "5.0.1"
|
|
nix = { version = "0.29.0", features = ["user"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
tauri-winrt-notification = "0.5.0"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows]
|
|
version = "0.58.0"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
]
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
# TODO: We can probably remove this, per <https://github.com/tauri-apps/tauri/releases/tag/tauri-v2.0.0-beta.8>
|
|
# I don't know how to verify this change, so I won't do it right now.
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
|
|
[lints]
|
|
workspace = true
|