mirror of
https://github.com/TrustTunnel/TrustTunnel.git
synced 2026-04-20 18:02:01 +00:00
Squashed commit of the following: commit0d037f73f1Author: Sergey Fionov <sfionov@adguard.com> Date: Sun Mar 1 08:38:32 2026 +0200 Fix error on certificate generation in setup_wizard commitd2fda1f615Author: Sergey Fionov <sfionov@adguard.com> Date: Sun Mar 1 08:33:47 2026 +0200 Fix error on cettificate generation in setup_wizard
34 lines
882 B
TOML
34 lines
882 B
TOML
[package]
|
|
name = "trusttunnel_endpoint_tools"
|
|
version = "0.1.0"
|
|
authors = ["Sergei Gunchenko <s.gunchenko@adguard.com>"]
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "setup_wizard"
|
|
path = "setup_wizard/main.rs"
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.26", default-features = false, features = ["clock"] }
|
|
clap = "4.5"
|
|
dialoguer = "0.10.4"
|
|
hex = "0.4"
|
|
ipnet = "2.9"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.19"
|
|
once_cell = "1.18.0"
|
|
rcgen = "0.13"
|
|
serde = "1.0.164"
|
|
toml = "0.7.4"
|
|
toml_edit = "0.19.10"
|
|
trusttunnel = { version = "0.1", path = "../lib", features = ["rt_doc"] }
|
|
x509-parser = "0.15.0"
|
|
rustls = "0.23.37"
|
|
|
|
# ACME/Let's Encrypt support
|
|
instant-acme = "0.7"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "net", "io-util"] }
|
|
hyper = { version = "1.4", features = ["server", "http1"] }
|
|
hyper-util = { version = "0.1", features = ["tokio"] }
|
|
http-body-util = "0.1"
|