rsocks 2.3.0

A super basic SOCKS5 proxy.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rsocks"
version = "2.3.0"
authors = ["Aaron Roney <twitchax@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A super basic SOCKS5 proxy."
readme = "README.md"
keywords = [
    "socks5",
    "socks",
    "proxy",
    "tokio",
    "networking",
]
categories = [
    "network-programming",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/twitchax/rusty_socks"

[lib]
name = "rsocks"
path = "src/lib.rs"

[[bin]]
name = "rsocks"
path = "src/bin.rs"

[[test]]
name = "socks5"
path = "tests/socks5.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

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

[dependencies.futures]
version = "0.3"

[dependencies.if-addrs]
version = "0.15"

[dependencies.phf]
version = "0.13"
features = ["macros"]

[dependencies.rand]
version = "0.10"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"
features = ["log"]

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "fmt",
    "ansi",
    "env-filter",
]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.pretty_assertions]
version = "1"

[profile.release]
lto = true
codegen-units = 1