tcpproxy/Cargo.toml

19 lines
625 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>"]
2022-10-17 04:50:26 +08:00
description = "Cross-platform asynchronous multi-client TCP proxy; great tokio demo."
2017-08-13 01:27:21 +08:00
homepage = "https://github.com/neosmart/tcpproxy"
repository = "https://github.com/neosmart/tcpproxy"
readme = "README.md"
2022-10-17 04:50:26 +08:00
keywords = ["proxy", "tcp", "networking", "tokio"]
2017-08-13 01:27:21 +08:00
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]
futures = "0.3.24"
getopts = "0.2.21"
rand = "0.8.5"
tokio = { version = "1.21.2", features = [ "io-util", "net", "rt-multi-thread", "macros", "sync" ] }