tcp-over-http/tcp_relay_client/Cargo.toml

18 lines
585 B
TOML
Raw Normal View History

2022-08-30 07:43:53 +00:00
[package]
2022-08-30 08:38:26 +00:00
name = "tcp_relay_client"
2022-08-30 07:43:53 +00:00
version = "0.1.0"
edition = "2021"
[dependencies]
2022-08-30 08:38:26 +00:00
base = { path = "../base" }
clap = { version = "3.2.18", features = ["derive", "env"] }
log = "0.4.17"
env_logger = "0.9.0"
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
2022-08-30 09:16:22 +00:00
tokio = { version = "1", features = ["full"] }
2022-08-30 12:17:21 +00:00
futures = "0.3.24"
tokio-tungstenite = { version = "0.17.2", features = ["__rustls-tls", "rustls-tls-native-roots"] }
urlencoding = "2.1.0"
rustls = { version = "0.20.6" }
hyper-rustls = { version = "0.23.0", features = ["rustls-native-certs"] }
bytes = "1.2.1"