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
|
[package]
name = "tor-relay-crypto"
version = "0.25.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
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",
]
[dependencies]
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
humantime = "2"
tor-cert = { path = "../tor-cert", version = "0.25.0", features = ["encode"] }
tor-error = { path = "../tor-error", version = "0.25.0" }
tor-key-forge = { path = "../tor-key-forge", version = "0.25.0" }
tor-keymgr = { path = "../tor-keymgr", version = "0.25.0" }
tor-persist = { path = "../tor-persist", version = "0.25.0" }
[dev-dependencies]
tor-keymgr = { version = "0.25.0", path = "../tor-keymgr", features = ["testing"] }
|