tcp-over-http/tcp_relay_client/Cargo.toml

13 lines
328 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"] }
2022-08-30 09:16:22 +00:00
tokio = { version = "1", features = ["full"] }
futures = "0.3.24"