vproxy 2.5.0

A high-performance HTTP/HTTPS/SOCKS5 proxy server
[[bin]]
name = "vproxy"
path = "src/main.rs"

[dependencies.base64]
version = "0.22.0"

[dependencies.bytes]
version = "1.10.1"

[dependencies.cidr]
version = "0.3.0"

[dependencies.clap]
features = ["derive", "env"]
version = "4.5.48"

[dependencies.futures-util]
default-features = false
version = "0.3.30"

[dependencies.fxhash]
version = "0.2.1"

[dependencies.http]
version = "1.3.1"

[dependencies.http-body-util]
version = "0.1.3"

[dependencies.hyper]
features = ["http1", "server"]
version = "1.7.0"

[dependencies.hyper-util]
features = ["full"]
version = "0.1.17"

[dependencies.jemallocator]
optional = true
package = "tikv-jemallocator"
version = "0.6"

[dependencies.mimalloc]
default-features = false
optional = true
version = "0.1.48"

[dependencies.percent-encoding]
version = "2.3.2"

[dependencies.pin-project-lite]
version = "0.2.16"

[dependencies.rcgen]
version = "0.14.5"

[dependencies.rpmalloc]
optional = true
version = "0.2.2"

[dependencies.rustls-pemfile]
version = "2.2.0"

[dependencies.rustls-pki-types]
version = "1.12.0"

[dependencies.self_update]
default-features = false
features = ["rustls", "archive-tar", "compression-flate2"]
version = "0.42.0"

[dependencies.smallvec]
version = "1.15.0"

[dependencies.snmalloc-rs]
optional = true
version = "0.3.8"

[dependencies.tcmalloc]
optional = true
version = "0.3.0"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tokio]
features = ["net", "rt-multi-thread", "macros", "io-util", "signal"]
version = "1.47.1"

[dependencies.tokio-rustls]
default-features = false
features = ["tls12"]
version = "0.26.4"

[dependencies.tracing]
version = "0.1.40"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3.20"

[features]
default = ["mimalloc"]
jemalloc = ["jemallocator"]
mimalloc = ["dep:mimalloc"]
rpmalloc = ["dep:rpmalloc"]
snmalloc = ["snmalloc-rs"]
tcmalloc = ["tcmalloc/bundled"]

[package]
authors = ["gngppz@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "command-line-utilities"]
description = "A high-performance HTTP/HTTPS/SOCKS5 proxy server"
edition = "2024"
keywords = ["http", "https", "socks5", "proxy", "server"]
license = "GPL-3.0"
name = "vproxy"
readme = "README.md"
repository = "https://github.com/0x676e67/vproxy"
rust-version = "1.85"
version = "2.5.0"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true

[target.'cfg(target_family = "unix")'.dependencies.daemonize]
version = "0.5.0"

[target.'cfg(target_family = "unix")'.dependencies.nix]
features = ["user", "signal"]
version = "0.30.1"

[target.'cfg(target_family = "unix")'.dependencies.sysinfo]
default-features = false
features = ["system"]
version = "0.37"

[target.'cfg(target_os = "linux")'.dependencies.futures]
version = "0.3.30"

[target.'cfg(target_os = "linux")'.dependencies.netlink-packet-route]
version = "0.25.1"

[target.'cfg(target_os = "linux")'.dependencies.realm_io]
version = "0.5.3"

[target.'cfg(target_os = "linux")'.dependencies.rtnetlink]
version = "0.18"

[target.'cfg(target_os = "linux")'.dependencies.sysctl]
version = "0.7.1"