Files
TrustTunnel/tools/Cargo.toml
Sergey Fionov d5f27bac46 Pull request 172: Fix error on certificate generation in setup_wizard
Squashed commit of the following:

commit 0d037f73f1
Author: Sergey Fionov <sfionov@adguard.com>
Date:   Sun Mar 1 08:38:32 2026 +0200

    Fix error on certificate generation in setup_wizard

commit d2fda1f615
Author: Sergey Fionov <sfionov@adguard.com>
Date:   Sun Mar 1 08:33:47 2026 +0200

    Fix error on cettificate generation in setup_wizard
2026-03-02 07:32:21 +00:00

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"