-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 936 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
[package]
name = "proxyswarm"
version = "0.4.1"
authors = ["Jorge Alejandro Jimenez Luna <[email protected]>"]
edition = "2021"
description = "Proxyswarm is a tiny lightweight proxy that allows redirect HTTP(S) traffic through a proxy."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = "symbols"
lto = true
# opt-level = "z"
[dependencies]
clap = { version = "4.4.3", features = ["cargo"] }
bytes = "1.5.0"
log4rs = "1.2.0"
log = "0.4.20"
digest_auth = "0.3.1"
base64 = "0.21.4"
hyper = { version = "1.0.0-rc.3", features = ["full"] }
tokio = { version = "1.32.0", features = ["full"] }
http-body-util = "0.1.0-rc.2"
config = { version = "0.13.3", default-features = false, features = ["ini"] }
thiserror = "1.0.48"
http = "0.2.9"
wildmatch = "2.1.1"
async-trait = "0.1.73"
socks5-impl = "0.5.3"
strum = { version = "0.25.0", features = ["derive"] }