-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (31 loc) · 847 Bytes
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 847 Bytes
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
[package]
name = "proxy-pool"
version = "0.1.0"
edition = "2021"
authors = ["Ares Wang <areswang@rss3.io>"]
description = "A simple proxy pool written in Rust"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/NaturalSelectionLabs/proxy-pool-rs"
keywords = ["proxy", "pool", "rust", "ipv6"]
[dependencies]
cidr = "0.2"
hyper = { version = "0.14", features = [
"client",
"server",
"http1",
"runtime",
] }
hyper-util = { version = "0.1.8", features = ["client-legacy"] }
tokio = { version = "1", features = ["full"] }
tower = { version = "0.4", features = ["make"] }
rand = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"
axum = "0.7.5"
thiserror = "1.0.63"
clap = { version = "4.5.17", features = ["derive", "env"] }
async-trait = "0.1.82"
futures = "0.3.30"
lazy_static = "1.5.0"
prometheus = "0.13.4"