4 changed files with 132 additions and 43 deletions
@ -1,19 +1,23 @@ |
|||||
[package] |
[package] |
||||
name = "sthp" |
name = "sthp" |
||||
version = "0.2.0" |
version = "0.2.0" |
||||
|
license = "MIT" |
||||
authors = ["Karan Gauswami <[email protected]>"] |
authors = ["Karan Gauswami <[email protected]>"] |
||||
edition = "2021" |
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 |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
||||
|
|
||||
[dependencies] |
[dependencies] |
||||
|
color-eyre = { version = "0.5", default-features = false } |
||||
futures-util = "0.3" |
futures-util = "0.3" |
||||
http = "0.2" |
http = "0.2" |
||||
hyper = { version = "0.14", features = ["http1", "server", "tcp", "client"] } |
hyper = { version = "0.14", features = ["http1", "server", "tcp", "client"] } |
||||
clap = { version = "3.2", features = ["derive"] } |
clap = { version = "3", features = ["derive"] } |
||||
tokio-socks = "0.5" |
tokio-socks = "0.5" |
||||
tokio = { version = "1.19 ", features = ["macros", "rt-multi-thread"] } |
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } |
||||
anyhow = "1.0" |
|
||||
hyper-socks2 = { version = "0.6" } |
hyper-socks2 = { version = "0.6" } |
||||
log = "0.4" |
log = "0.4" |
||||
env_logger = "0.9" |
env_logger = "0.9" |
||||
|
@ -1,21 +0,0 @@ |
|||||
MIT License |
|
||||
|
|
||||
Copyright (c) 2020 Karan Gauswami |
|
||||
|
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
|
||||
of this software and associated documentation files (the "Software"), to deal |
|
||||
in the Software without restriction, including without limitation the rights |
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
||||
copies of the Software, and to permit persons to whom the Software is |
|
||||
furnished to do so, subject to the following conditions: |
|
||||
|
|
||||
The above copyright notice and this permission notice shall be included in all |
|
||||
copies or substantial portions of the Software. |
|
||||
|
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
|
||||
SOFTWARE. |
|
Loading…
Reference in new issue