[package] name = "tor-socksproto" version = "0.6.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2021" rust-version = "1.60" license = "MIT OR Apache-2.0" homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Encode and decode the SOCKS protocol, as extended in Tor" keywords = ["tor", "arti", "socks"] categories = ["network-programming"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [features] default = ["proxy-handshake"] client-handshake = [] proxy-handshake = [] [dependencies] arbitrary = { version = "1.0.1", optional = true, features = ["derive"] } caret = { path = "../caret", version = "0.3.0" } subtle = "2" thiserror = "1" tor-bytes = { path = "../tor-bytes", version = "0.6.0" } tor-error = { path = "../tor-error", version = "0.4.0" } [dev-dependencies] hex-literal = "0.3" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]