socks5-impl 0.2.4

Fundamental abstractions and async read / write functions for SOCKS5 protocol and Relatively low-level asynchronized SOCKS5 server implementation based on tokio
Documentation
[package]
name = "socks5-impl"
version = "0.2.4"
authors = ["ssrlive <ssrlivebox@gmail.com>"]
description = "Fundamental abstractions and async read / write functions for SOCKS5 protocol and Relatively low-level asynchronized SOCKS5 server implementation based on tokio"
categories = ["network-programming", "asynchronous"]
keywords = ["socks5", "socks", "proxy", "async", "network"]
edition = "2021"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/ssrlive/socks5-impl"

[features]
default = ["tokio"]
tokio = ["dep:tokio"]

[dependencies]
async-trait = "0.1"
byteorder = "1.4"
bytes = "1.4"
tokio = { version = "1.28", features = ["io-util", "net"], optional = true }

[dev-dependencies]
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }