[package] name = "tor-linkspec" version = "0.41.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2024" rust-version = "1.89" license = "MIT OR Apache-2.0" homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Parts of the Tor protocol that indicate specific relays on the network" keywords = ["tor", "arti"] categories = ["network-programming"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [features] default = [] full = [ "pt-client", "caret/full", "safelog/full", "tor-basic-utils/full", "tor-bytes/full", "tor-config/full", "tor-llcrypto/full", "tor-protover/full", "tor-memquota/full", ] experimental = ["decode", "verbatim"] pt-client = [] decode = ["__is_experimental"] verbatim = ["__is_experimental"] __is_experimental = [] [dependencies] base64ct = "1.5.1" by_address = "1" caret = { path = "../caret", version = "0.9.0" } derive-deftly = { version = "~1.6.0", features = ["full", "beta"] } derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "2.0.1", features = ["full"] } hex = "0.4" itertools = "0.14.0" safelog = { path = "../safelog", version = "0.8.1" } serde = { version = "1.0.103", features = ["derive"] } serde_with = "3.0.0" strum = { version = "0.28.0", features = ["derive"] } thiserror = "2" tor-basic-utils = { path = "../tor-basic-utils", version = "0.41.0" } tor-bytes = { path = "../tor-bytes", version = "0.41.0" } tor-config = { path = "../tor-config", version = "0.41.0" } tor-llcrypto = { path = "../tor-llcrypto", version = "0.41.0", features = ["memquota-memcost"] } tor-memquota = { version = "0.41.0", path = "../tor-memquota", default-features = false } tor-protover = { path = "../tor-protover", version = "0.41.0" } [dev-dependencies] hex-literal = "1.0" itertools = "0.14.0" serde_test = "1.0.124" [package.metadata.docs.rs] all-features = true