-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 894 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
[package]
name = "proxied"
version = "0.3.6"
edition = "2021"
description = "Asynchronous client connector for proxies"
license = "MIT"
repository = "https://github.com/hdbg/proxied"
categories = ["asynchronous", "network-programming"]
keywords = ["proxy", "async", "http", "socks", "client"]
authors = ["hdbg"]
documentation = "https://docs.rs/proxied"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-http-proxy = { version = "1.2.5", features = ["basic-auth", "runtime-tokio", "tokio"] }
fast-socks5 = "0.9.6"
serde = { version = "1.0.202", features = ["derive"] }
thiserror = "1.0.60"
tokio = { version = "1.38.0", features = ["io-util", "net"] }
uri = "0.4.0"
[dev-dependencies]
anyhow = "1.0.86"
futures = "0.3.30"
tokio = { version = "1.38.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"