Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
0x676e67 committed Apr 19, 2024
1 parent 9fe20e8 commit 07445e6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 13 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vproxy"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["[email protected]"]
description = "Random IPv6 request proxy"
Expand All @@ -16,15 +16,24 @@ thiserror = "1.0.56"
hyper = { version = "1.1.0", features = ["http1", "server"] }
hyper-util = { version = "0.1.2", features = ["full"] }
http-body-util = "0.1"
tokio = { version = "1.35.1", features = ["net", "rt-multi-thread", "macros", "io-util"] }
tokio = { version = "1.35.1", features = [
"net",
"rt-multi-thread",
"macros",
"io-util",
] }
rand = "0.8.5"
bytes = "1.5.0"
pin-project-lite = "0.2.13"
http = "1.0.0"
clap = { version = "4.4.14", features = ["derive", "env"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
self_update = { version = "0.39.0", default-features = false, features = ["rustls", "archive-tar", "compression-flate2"] }
self_update = { version = "0.39.0", default-features = false, features = [
"rustls",
"archive-tar",
"compression-flate2",
] }

# allocator
tcmalloc = { version = "0.3.0", optional = true }
Expand All @@ -38,7 +47,7 @@ sysctl = "0.5.5"

[target.'cfg(target_family = "unix")'.dependencies]
daemonize = "0.5.0"
nix = { version = "0.27.1", features = ["user", "signal"]}
nix = { version = "0.27.1", features = ["user", "signal"] }

[features]
default = []
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ Options:
-B, --bind <BIND> Bind address [default: 0.0.0.0:8100]
-u, --auth-user <AUTH_USER> Basic auth username
-p, --auth-pass <AUTH_PASS> Basic auth password
-C, --tls-cert <TLS_CERT> TLS certificate file
-K, --tls-key <TLS_KEY> TLS private key file
-i, --ipv6-subnet <IPV6_SUBNET> Ipv6 subnet, e.g. 2001:db8::/32
-f, --fallback <FALLBACK> Fallback address
-t, --typed <TYPED> Proxy type, e.g. http, https, socks5 [default: http]
Expand Down

0 comments on commit 07445e6

Please sign in to comment.