blob: 23d1854f278612a1ecaa1b9a9a7b0e2686fc3dd7 (
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
|
[package]
name = "tor-consdiff"
version = "0.44.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Handle the consensus-diff format used in the Tor directory protocol"
keywords = ["tor", "arti", "diff"]
categories = ["parser-implementations", "network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
full = ["tor-llcrypto/full", "tor-error/full", "tor-netdoc/full"]
experimental = ["slow-diff-apply"]
slow-diff-apply = ["__is_experimental"]
__is_experimental = []
[dependencies]
derive_more = "2.1.1"
digest = "0.10.0"
hex = "0.4"
imara-diff = "0.2.0"
static_assertions = "1.1.0"
thiserror = "2"
tor-error = { path = "../tor-error", version = "0.44.0" }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.44.0" }
# TODO: Ideally, we would be able to compile without ns-vote.
tor-netdoc = { path = "../tor-netdoc", version = "0.44.0", features = ["incomplete"] }
[dev-dependencies]
rand = "0.10.1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.44.0" }
[package.metadata.docs.rs]
all-features = true
|