mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
47 lines
1.7 KiB
TOML
47 lines
1.7 KiB
TOML
[package]
|
|
name = "firezone-headless-client"
|
|
# mark:next-headless-version
|
|
version = "1.5.1"
|
|
edition = { workspace = true }
|
|
authors = ["Firezone, Inc."]
|
|
license = { workspace = true }
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
backoff = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "env", "string"] }
|
|
client-shared = { workspace = true }
|
|
connlib-model = { workspace = true }
|
|
dns-types = { workspace = true }
|
|
firezone-bin-shared = { workspace = true }
|
|
firezone-logging = { workspace = true }
|
|
firezone-telemetry = { workspace = true }
|
|
futures = { workspace = true }
|
|
humantime = { workspace = true }
|
|
ip-packet = { workspace = true }
|
|
opentelemetry = { workspace = true, features = ["metrics"] }
|
|
opentelemetry-stdout = { workspace = true, features = ["metrics"] }
|
|
opentelemetry_sdk = { workspace = true, features = ["rt-tokio"] }
|
|
phoenix-channel = { workspace = true }
|
|
rustls = { workspace = true }
|
|
secrecy = { workspace = true }
|
|
# This actually relies on many other features in Tokio, so this will probably
|
|
# fail to build outside the workspace. <https://github.com/firezone/firezone/pull/4328#discussion_r1540342142>
|
|
tokio = { workspace = true, features = ["macros", "signal", "process", "time", "fs", "rt"] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
url = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libc = { workspace = true }
|
|
nix = { workspace = true, features = ["fs", "user", "socket"] }
|
|
sd-notify = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
known-folders = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|