blob: 9609bc10d5d8e44014caffabc62e8a504f190c03 (
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
|
[package]
name = "tor-relay-crypto"
version = "0.24.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"]
[dependencies]
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
tor-cert = { path = "../tor-cert", version = "0.24.0", features = ["encode"] }
tor-key-forge = { path = "../tor-key-forge", version = "0.24.0" }
tor-keymgr = { path = "../tor-keymgr", version = "0.24.0" }
[dev-dependencies]
|