mirror of
https://github.com/TrustTunnel/TrustTunnel.git
synced 2026-04-20 18:02:01 +00:00
26 lines
881 B
TOML
26 lines
881 B
TOML
[package]
|
|
name = "trusttunnel_endpoint"
|
|
version = "1.0.12"
|
|
authors = ["Sergei Gunchenko <s.gunchenko@adguard.com>"]
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "trusttunnel_endpoint"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
clap = "4.5"
|
|
console-subscriber = { version = "0.1.9", optional = true }
|
|
hex = "0.4"
|
|
log = "0.4.19"
|
|
rustls = { version = "0.23.37", features = ["logging"] }
|
|
nix = { version = "0.28.0", features = ["resource"] }
|
|
sentry = { version = "0.46.0", default-features = false, features = ["backtrace", "panic", "reqwest", "rustls", "contexts"] }
|
|
tokio = { version = "1.42", features = ["rt-multi-thread", "signal"] }
|
|
toml = { version = "0.7.4", default-features = false, features = ["parse"] }
|
|
trusttunnel = { version = "0.1", path = "../lib" }
|
|
|
|
[features]
|
|
# RUSTFLAGS="--cfg tokio_unstable" must also be set
|
|
tracing = ["trusttunnel/tracing", "tokio/tracing", "dep:console-subscriber"]
|