tcpproxy/Cargo.toml

20 lines
601 B
TOML
Raw Normal View History

2017-08-12 11:53:31 +08:00
[package]
name = "tcpproxy"
version = "0.1.0"
authors = ["Mahmoud Al-Qudsi <mqudsi@neosmart.net>"]
2017-08-13 01:27:21 +08:00
description = "Cross-platform multi-client TCP proxy"
homepage = "https://github.com/neosmart/tcpproxy"
repository = "https://github.com/neosmart/tcpproxy"
readme = "README.md"
keywords = ["proxy", "tcp", "networking"]
categories = ["command-line-utilities", "network-programming"]
license = "MIT"
2020-01-02 04:48:31 +08:00
edition = "2018"
2017-08-12 11:53:31 +08:00
[dependencies]
2020-01-02 04:48:31 +08:00
futures = "0.3"
2017-08-13 01:27:21 +08:00
getopts = "0.2"
2020-01-02 04:48:31 +08:00
rand = "0.7"
tokio = { version = "0.2", features = [ "io-util", "macros", "rt-core", "rt-threaded", "tcp", ] }
trust-dns-resolver = "0.18"