[package] name = "tor-proto" version = "0.25.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2021" rust-version = "1.77" license = "MIT OR Apache-2.0" homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Asynchronous client-side implementation of the central Tor network protocols" keywords = ["tor", "arti", "networking", "anonymity"] categories = ["network-programming", "cryptography"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [features] default = [] full = [ "hs-client", "hs-service", "tokio", "send-control-msg", "safelog/full", "tor-async-utils/full", "tor-basic-utils/full", "tor-bytes/full", "tor-cell/full", "tor-cert/full", "tor-checkable/full", "tor-config/full", "tor-error/full", "tor-linkspec/full", "tor-llcrypto/full", "tor-rtcompat/full", "tor-rtmock/full", "tor-units/full", "tor-hscrypto?/full", "tor-log-ratelim/full", "oneshot-fused-workaround/full", "tor-memquota/full", ] experimental = ["experimental-api", "ntor_v3", "stream-ctrl", "testing", "bench"] ntor_v3 = ["__is_experimental"] hs-client = ["hs-common"] hs-service = ["hs-common"] hs-common = ["tor-hscrypto"] experimental-api = ["__is_experimental"] # start_conversation etc.; TODO HS should be renamed send-control-msg = ["visibility"] stream-ctrl = ["__is_experimental"] # Enable testing-only APIs. APIs under this feature are not # covered by semver. testing = ["__is_experimental"] tokio = ["tokio-crate", "tokio-util"] bench = ["__is_experimental"] __is_experimental = [] [dependencies] asynchronous-codec = "0.7.0" bitvec = "1.0.1" bytes = "1" cipher = { version = "0.4.1", features = ["zeroize"] } coarsetime = "0.1.20" derive-deftly = "0.14.2" derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "1.0.0", features = ["full"] } digest = "0.10.0" educe = "0.4.6" futures = "0.3.14" hkdf = "0.12.0" hmac = "0.12.0" oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" } pin-project = "1" rand = "0.8" rand_core = "0.6.2" safelog = { path = "../safelog", version = "0.4.2" } subtle = "2" thiserror = "2" tokio-crate = { package = "tokio", version = "1.7", optional = true } tokio-util = { version = "0.7.0", features = ["compat"], optional = true } tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" } tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" } tor-bytes = { path = "../tor-bytes", version = "0.25.0" } tor-cell = { path = "../tor-cell", version = "0.25.0" } tor-cert = { path = "../tor-cert", version = "0.25.0" } tor-checkable = { path = "../tor-checkable", version = "0.25.0" } tor-config = { path = "../tor-config", version = "0.25.0" } tor-error = { path = "../tor-error", version = "0.25.0" } tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", features = ["memquota-memcost"], optional = true } tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" } tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0", features = ["memquota-memcost"] } tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.25.0" } tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false } tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" } tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" } tor-units = { path = "../tor-units", version = "0.25.0", features = ["memquota-memcost"] } tracing = "0.1.36" typenum = "1.12" visibility = { version = "0.1.0", optional = true } void = "1" zeroize = "1" [dev-dependencies] cpu-time = "1.0.0" criterion = "0.5.1" hex = "0.4" hex-literal = "0.4" humantime = "2" itertools = "0.13.0" regex = { version = "1", default-features = false, features = ["std"] } statrs = "0.17.1" tokio-crate = { package = "tokio", version = "1.7", features = ["full"] } tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] } [package.metadata.docs.rs] all-features = true [[bench]] name = "cell_decrypt" harness = false required-features = ["bench"] [[bench]] name = "cell_encrypt" harness = false required-features = ["bench"] [[bench]] name = "cell_is_recognized" harness = false required-features = ["bench"] [[bench]] name = "cell_set_digest" harness = false required-features = ["bench"]