-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathCargo.toml
49 lines (43 loc) · 989 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "fast-socks5"
version = "0.10.0"
authors = ["Jonathan Dizdarevic <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Fast SOCKS5 client/server implementation written in Rust async/.await (tokio)"
repository = "https://github.com/dizda/fast-socks5"
categories = [
"asynchronous",
"network-programming",
"command-line-utilities",
"authentication",
]
keywords = ["io", "proxy", "vpn", "async", "socks"]
[features]
default = []
socks4 = []
[dependencies]
log = "0.4"
tokio = { version = "1", features = ["io-util", "net", "time", "macros"] }
anyhow = "1"
thiserror = "1"
tokio-stream = "0.1"
async-trait = "0.1"
# Dependencies for examples and tests
[dev-dependencies]
env_logger = "0.9"
structopt = "0.3"
tokio = { version = "1", features = [
"io-util",
"net",
"time",
"rt-multi-thread",
"macros",
] }
tokio-test = "0.4"
[[example]]
name = "server"
[[example]]
name = "client"
[[example]]
name = "simple_tcp_server"