2022-08-30 07:43:53 +00:00
|
|
|
[package]
|
|
|
|
name = "tcp_relay_server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-30 08:17:38 +00:00
|
|
|
base = { path = "../base" }
|
2022-08-30 07:43:53 +00:00
|
|
|
clap = { version = "3.2.18", features = ["derive", "env"] }
|
|
|
|
log = "0.4.17"
|
|
|
|
env_logger = "0.9.0"
|
2022-08-30 09:46:21 +00:00
|
|
|
actix = "0.13.0"
|
2022-08-31 07:29:22 +00:00
|
|
|
actix-web = { version = "4", features = ["rustls"] }
|
2022-08-30 09:46:21 +00:00
|
|
|
actix-web-actors = "4.1.0"
|
2022-08-31 07:29:22 +00:00
|
|
|
actix-tls = "3.0.3"
|
2022-08-30 10:33:16 +00:00
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-08-31 07:29:22 +00:00
|
|
|
futures = "0.3.24"
|
|
|
|
rustls = "0.20.6"
|
2022-08-31 10:24:54 +00:00
|
|
|
webpki = "0.22.0"
|