summaryrefslogtreecommitdiff
path: root/crates/tor-linkspec/Cargo.toml
blob: 98ca45c5028762ba8ddaebe44a2c7a93cb254602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "tor-linkspec"
version = "0.6.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
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"]
experimental = []
pt-client = []

[dependencies]
base64ct = "1.5.1"
by_address = "1"
cfg-if = "1.0.0"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.3"
educe = "0.4.6"
hex = "0.4"
safelog = { path = "../safelog", version = "0.2.0" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "2.0.1"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
tor-config = { path = "../tor-config", version = "0.7.0" }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
tor-protover = { path = "../tor-protover", version = "0.4.0" }

[dev-dependencies]
hex-literal = "0.3"
itertools = "0.10.1"
serde_test = "1.0.124"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]