aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-relay-crypto/Cargo.toml
blob: d1bdc557c13c5fd0c2fd21dc022fc907223b4ebf (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
[package]
name = "tor-relay-crypto"
version = "0.45.0"
authors = ["The Tor Project, Inc."]
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Cryptography types and helpers for a Tor relay"
keywords = ["tor", "arti", "cryptography"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = []
full = [
    "tor-cert/full",
    "tor-key-forge/full",
    "tor-keymgr/full",
    "tor-error/full",
    "tor-persist/full",
    "tor-checkable/full",
    "tor-llcrypto/full",
    "web-time-compat/full",
]

[dependencies]
derive-deftly = { version = "~1.11.4", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
humantime = "2"
tor-cert = { path = "../tor-cert", version = "0.45.0" }
tor-checkable = { path = "../tor-checkable", version = "0.45.0" }
tor-error = { path = "../tor-error", version = "0.45.0" }
tor-key-forge = { path = "../tor-key-forge", version = "0.45.0" }
tor-keymgr = { path = "../tor-keymgr", version = "0.45.0", features = ["experimental-api"] }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.45.0" }
tor-persist = { path = "../tor-persist", version = "0.45.0" }
web-time-compat = { path = "../web-time-compat", version = "0.2.0" }

[dev-dependencies]
tor-keymgr = { version = "0.45.0", path = "../tor-keymgr", features = ["testing"] }

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