First pass to implement socks5 support
This commit is contained in:
parent
8c16239a0e
commit
70dcb2e6cb
11 changed files with 195 additions and 23 deletions
|
|
@ -42,7 +42,10 @@ anyhow = "1"
|
|||
itertools = "0.12"
|
||||
http = "1"
|
||||
regex = "1"
|
||||
reqwest = { version = "0.12", default-features = false, features = ["json"] }
|
||||
reqwest = { version = "0.12", default-features = false, features = [
|
||||
"json",
|
||||
"socks",
|
||||
] }
|
||||
urlencoding = "2"
|
||||
byteorder = "1"
|
||||
bincode = "1"
|
||||
|
|
@ -75,6 +78,7 @@ async-stream = "0.3.5"
|
|||
memmap2 = { version = "0.9.4" }
|
||||
lru = { version = "0.12.3", optional = true }
|
||||
mime_guess = { version = "2.0.5", default-features = false }
|
||||
tokio-socks = "0.5.2"
|
||||
|
||||
[dev-dependencies]
|
||||
futures = { version = "0.3" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue