aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-cert/Cargo.toml
blob: 2543f5d810c678f435538f0902eb96162908d6ec (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
[package]
name = "tor-cert"
version = "0.7.4"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.65"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Non-standard certificate formats used by Tor"
keywords = ["tor", "arti", "certificate"]
categories = ["parser-implementations"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = []
experimental = ["encode"]
encode = ["derive_builder", "__is_experimental"]
full = ["caret/full", "tor-bytes/full", "tor-checkable/full", "tor-llcrypto/full"]
__is_experimental = []

[dependencies]
caret = { path = "../caret", version = "0.4.1" }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti", optional = true }
digest = "0.10.0"
signature = "1"
thiserror = "1"
tor-bytes = { path = "../tor-bytes", version = "0.7.4" }
tor-checkable = { path = "../tor-checkable", version = "0.5.3" }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.5.4" }

[dev-dependencies]
base64ct = "1.5.1"
hex-literal = "0.4"
humantime = "2"
rand = "0.8"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]