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-30 08:17:38 +00:00
|
|
|
actix-web = "4"
|
2022-08-30 09:46:21 +00:00
|
|
|
actix-web-actors = "4.1.0"
|
2022-08-30 10:33:16 +00:00
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
futures = "0.3.24"
|