diff --git a/Cargo.toml b/Cargo.toml index 8962262..3fd0551 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vproxy" -version = "0.1.5" +version = "0.1.6" edition = "2021" authors = ["gngppz@gmail.com"] description = "Random IPv6 request proxy" @@ -16,7 +16,12 @@ 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" @@ -24,7 +29,11 @@ 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 } @@ -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 = [] diff --git a/README.md b/README.md index e5111e7..70ce400 100644 --- a/README.md +++ b/README.md @@ -103,8 +103,6 @@ Options: -B, --bind Bind address [default: 0.0.0.0:8100] -u, --auth-user Basic auth username -p, --auth-pass Basic auth password - -C, --tls-cert TLS certificate file - -K, --tls-key TLS private key file -i, --ipv6-subnet Ipv6 subnet, e.g. 2001:db8::/32 -f, --fallback Fallback address -t, --typed Proxy type, e.g. http, https, socks5 [default: http]