socker 0.0.1

SOCKS protocol implementation
Documentation
[package]
name                   = "socker"
description            = "SOCKS protocol implementation"
version                = "0.0.1"
categories             = [ "network-programming" ]
keywords               = [ "client", "proxy", "server", "socks", "socks5" ]
publish                = true
authors.workspace      = true
readme.workspace       = true
license-file.workspace = true
repository.workspace   = true
rust-version.workspace = true
edition.workspace      = true

[lints]
workspace = true

[features]
default = [  ]
tokio   = [ "dep:tokio", "dep:tokio-util" ]

[dependencies]
futures.workspace = true
tokio             = { optional = true, version = "1.47", features = [ "io-util", "macros", "net", "rt" ] }
tokio-util        = { optional = true, version = "0.7", features = [ "compat", "io", "net" ] }
caret             = "0.6"