Skip to content

Commit

Permalink
Tag v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeajimenezl committed Jun 22, 2023
1 parent eeee39d commit 0fe112a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proxyswarm"
version = "0.3.0"
version = "0.3.1"
authors = ["Jorge Alejandro Jimenez Luna <[email protected]>"]
edition = "2021"
description = "Proxyswarm is a lightweight proxy that allows redirect HTTP(S) traffic through a proxy."
Expand Down
2 changes: 1 addition & 1 deletion build/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Jorge Alejandro Jimenez Luna <[email protected]>

pkgname=proxyswarm
pkgver=0.3.0
pkgver=0.3.1
pkgrel=1
pkgdesc="Lightweight proxy that allows redirect HTTP(S) traffic through a proxy."
arch=('x86_64')
Expand Down
2 changes: 1 addition & 1 deletion src/core/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ impl App {
pub async fn run(self) -> Result<(), String> {
// Separate to avoid add more logic
if matches!(self.context.mode, OperationMode::Transparent) {
todo!();
todo!("Wait a little more :(");
}

App::serve_http(self.context)
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ fn main() {
.long("baypass")
.short('a')
.action(ArgAction::Append)
.help("Avoid to send to proxy this dst"),
.help("Avoid proxify the request with these destinations"),
)
.arg(
Arg::new("file")
Expand Down Expand Up @@ -143,7 +143,7 @@ fn main() {
.unwrap()
.set_override_option("proxy.password", credentials.map(|x| x.split(":").nth(1)))
.unwrap()
.set_override_option("proxy.mode", matches.get_one::<String>("mode").cloned())
.set_override_option("general.mode", matches.get_one::<String>("mode").cloned())
.unwrap()
.set_override_option::<_, String>(
"general.bind-address",
Expand Down

0 comments on commit 0fe112a

Please sign in to comment.