summaryrefslogtreecommitdiff
path: root/crates/tor-checkable/Cargo.toml
blob: 6da1fd28893aeac9cefb8173ad3f9e2ceaf06f22 (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-checkable"
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 = "Types to ensure that signed or time-bound data is validated before use"
keywords = ["tor", "arti", "typestate"]
categories = ["cryptography", "rust-patterns"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
experimental = ["experimental-api"]
experimental-api = ["__is_experimental"]
full = ["tor-llcrypto/full"]
__is_experimental = []

[dependencies]
humantime = "2"
signature = "2"
thiserror = "2"
tor-llcrypto = { path = "../tor-llcrypto", version = "0.40.0" }
[package.metadata.docs.rs]
all-features = true
[dev-dependencies]
humantime = "2"