[package] name = "tor-cell" version = "0.16.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2021" rust-version = "1.70" license = "MIT OR Apache-2.0" homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Encode and decode Tor cells and messages" keywords = ["tor", "arti", "protocol"] categories = ["parser-implementations", "network-programming"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [features] default = [] experimental = ["experimental-udp", "hs", "testing"] # Enable experimental UDP support. experimental-udp = ["__is_experimental"] # "hs" = (all) hidden service support, either client or server hs = ["tor-hscrypto", "__is_experimental"] # Enable testing only API testing = ["experimental-udp", "__is_experimental"] full = [ "caret/full", "tor-basic-utils/full", "tor-bytes/full", "tor-cert/full", "tor-error/full", "tor-hscrypto?/full", "tor-linkspec/full", "tor-llcrypto/full", "tor-units/full", ] __is_experimental = [] [dependencies] bitflags = "2" bytes = "1" caret = { path = "../caret", version = "0.4.1" } derive_more = "0.99.3" educe = "0.4.6" paste = "1" rand = "0.8" thiserror = "1" tor-basic-utils = { path = "../tor-basic-utils", version = "0.8.0" } tor-bytes = { path = "../tor-bytes", version = "0.10.0" } tor-cert = { path = "../tor-cert", version = "0.10.0" } tor-error = { path = "../tor-error", version = "0.6.0" } tor-hscrypto = { path = "../tor-hscrypto", version = "0.6.0", optional = true } tor-linkspec = { path = "../tor-linkspec", version = "0.11.0" } tor-llcrypto = { path = "../tor-llcrypto", version = "0.7.0" } tor-units = { path = "../tor-units", version = "0.6.1" } [dev-dependencies] hex = "0.4" hex-literal = "0.4" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]