forked from KaranGauswami/socks-to-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 965 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 965 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
[package]
name = "sthp"
version = "0.9.6"
license = "MIT"
authors = ["Blackswan <nxtreaming@gmail.com>"]
edition = "2021"
categories = ["command-line-utilities"]
description = "Convert Socks5 proxy into Http proxy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
color-eyre = { version = "0.6", default-features = false }
http = "1.1"
hyper = { version = "1.5", features = ["client","server","http1"] }
clap = { version = "4", features = ["derive"] }
tokio-socks = "0.5"
tokio = { version = "1.42", features = ["macros", "rt-multi-thread", "signal", "process", "io-util", "net", "sync", "fs"] }
bytes = "1.8"
http-body-util = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
hyper-util = { version = "0.1", features = ["tokio", "client-legacy", "server-auto"] }
base64 = "0.22"
thiserror = "1.0"
pin-project = "1.1"
[dev-dependencies]
serial_test = "3.2.0"