blob: e0bdf977e787f1a754ea5f52836d5e9ece74726f (
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
|
[package]
name = "tor-key-forge"
version = "0.23.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 = "Low level cryptography wrappers used by Tor"
keywords = ["tor", "arti", "cryptography"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
full = [
"tor-error/full",
"tor-hscrypto/full",
"tor-llcrypto/full",
]
__is_nonadditive = []
__is_experimental = []
[dependencies]
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
downcast-rs = "1.2.0"
paste = "1"
rand = "0.8"
signature = "2"
ssh-key = { version = "0.6.1", features = ["std"] }
thiserror = "1"
tor-error = { version = "0.23.0", path = "../tor-error" }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0" }
tor-llcrypto = { version = "0.23.0", path = "../tor-llcrypto" }
[dev-dependencies]
signature = "2"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
|