-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
23 lines (20 loc) · 841 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
[package]
name = "async-socks5"
version = "0.6.0"
authors = ["Arsenii Lyashenko <[email protected]>", "Temirkhan Myrzamadi <[email protected]>"]
license = "Apache-2.0 OR MIT"
description = "An async/.await SOCKS5 implementation"
repository = "https://github.com/ark0f/async-socks5"
documentation = "https://docs.rs/async-socks5"
readme = "README.md"
keywords = ["tokio", "async", "socks", "proxy"]
categories = ["asynchronous", "authentication", "network-programming"]
include = ["Cargo.toml", "LICENSE-*.md", "src/**/*"]
edition = "2021"
[badges]
github-actions = { repository = "https://github.com/ark0f/async-socks5", workflow = "CI" }
[dependencies]
tokio = { version = "1.0", features = ["net", "io-util"] }
thiserror = "1.0.0"
[dev-dependencies]
tokio = { version = "1.0", features = ["net", "io-util", "rt", "macros"] }