summaryrefslogtreecommitdiff
path: root/crates/tor-linkspec/Cargo.toml
blob: 49e5e9fd697b652c4067a8e0e98d4127ec823d50 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "tor-linkspec"
version = "0.40.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
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.0" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
strum = { version = "0.27.1", features = ["derive"] }
thiserror = "2"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.40.0" }
tor-bytes = { path = "../tor-bytes", version = "0.40.0" }
tor-config = { path = "../tor-config", version = "0.40.0" }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.40.0", features = ["memquota-memcost"] }
tor-memquota = { version = "0.40.0", path = "../tor-memquota", default-features = false }
tor-protover = { path = "../tor-protover", version = "0.40.0" }

[dev-dependencies]
hex-literal = "1.0"
itertools = "0.14.0"
serde_test = "1.0.124"

[package.metadata.docs.rs]
all-features = true