siranga/Cargo.toml
Dreaded_X 5213aee232
Store tunnel access in Arc<RwLock> and keep a copy in the handler
This should make it easier to access a tunnel in the handler and to
modify its access
2025-04-08 02:01:18 +02:00

21 lines
625 B
TOML

[package]
name = "tunnel_rs"
version = "0.1.0"
edition = "2024"
default-run = "tunnel_rs"
[dependencies]
bytes = "1.10.1"
clap = { version = "4.5.35", features = ["derive"] }
dotenvy = "0.15.7"
http-body-util = { version = "0.1.3", features = ["full"] }
hyper = { version = "1.6.0", features = ["full"] }
hyper-util = { version = "0.1.11", features = ["full"] }
indexmap = "2.9.0"
rand = "0.8.5"
reqwest = { version = "0.12.15", features = ["rustls-tls"] }
russh = "0.51.1"
tokio = { version = "1.44.1", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }