arti/crates/tor-linkspec/Cargo.toml

40 lines
1.3 KiB
TOML

[package]
name = "tor-linkspec"
version = "0.5.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.56"
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 = []
experimental = ["pt-client"]
pt-client = []
[dependencies]
base64ct = "1.5.1"
cfg-if = "1.0.0"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99"
educe = "0.4.6"
hex = "0.4"
serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.4.1" }
tor-bytes = { path = "../tor-bytes", version = "0.5.1" }
tor-config = { path = "../tor-config", version = "0.6.1" }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.3.5" }
tor-protover = { path = "../tor-protover", version = "0.3.0" }
[dev-dependencies]
hex-literal = "0.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]