summaryrefslogtreecommitdiff
path: root/crates/tor-consdiff/Cargo.toml
blob: e9cf6913d732080d7a7f9e78837ab62945b53d45 (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
[package]
name = "tor-consdiff"
version = "0.27.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
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"]

experimental = ["slow-diff-apply"]
slow-diff-apply = ["__is_experimental"]
__is_experimental = []

[dependencies]
digest = "0.10.0"
hex = "0.4"
thiserror = "2"
tor-llcrypto = { path = "../tor-llcrypto", version = "0.27.0" }
[package.metadata.docs.rs]
all-features = true