Signed-off-by: Karan Gauswami <[email protected]>
@ -11,7 +11,7 @@ env:
jobs:
build:
name: Publish for ${{ matrix.os }}
name: Build for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
@ -12,15 +12,15 @@ description = "Convert Socks5 proxy into Http proxy"
[dependencies]
color-eyre = { version = "0.6", default-features = false }
hyper = { version = "1.3", features = ["client","server","http1"] }
hyper = { version = "1.5", features = ["client","server","http1"] }
clap = { version = "4", features = ["derive"] }
tokio-socks = "0.5"
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] }
bytes = "1.4.0"
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
bytes = "1.9"
http-body-util = "0.1.2"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
hyper-util = { version="0.1.5",features = ["tokio"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
hyper-util = { version="0.1.10",features = ["tokio"] }
base64 = "0.22.1"
[target.'cfg(not(windows))'.dependencies]
@ -54,6 +54,7 @@ Options:
-s, --socks-address <SOCKS_ADDRESS> Socks5 proxy address [default: 127.0.0.1:1080]
--allowed-domains <ALLOWED_DOMAINS> Comma-separated list of allowed domains
--http-basic <HTTP_BASIC> HTTP Basic Auth credentials in the format "user:passwd"
-h, --help Print help information
-V, --version Print version information
-d, --detached Run process in background ( Only for Unix based systems)
-h, --help Print help
-V, --version Print version
```