summaryrefslogtreecommitdiff
path: root/crates/tor-key-forge/Cargo.toml
blob: deee3106b6ad2a18a97d19b3decd80a34a2c4705 (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
45
46
47
48
49
[package]
name = "tor-key-forge"
version = "0.40.0"
authors = ["The Tor Project, Inc."]
edition = "2024"
rust-version = "1.89"
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-llcrypto/full",
    "tor-cert/full",
    "tor-bytes/full",
    "tor-checkable/full",
]

__is_nonadditive = []
__is_experimental = []

[dependencies]
derive-deftly = { version = "~1.6.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
downcast-rs = "2.0.1"
paste = "1.0.3"
rand = "0.9.1"
rsa = "0.9.0"
signature = "2"
ssh-key = { version = "0.6.1", features = ["std", "rsa"] }
thiserror = "2"
tor-bytes = { path = "../tor-bytes", version = "0.40.0", default-features = false }
tor-cert = { path = "../tor-cert", version = "0.40.0", features = ["encode", "experimental-api"] }
tor-checkable = { path = "../tor-checkable", version = "0.40.0" }
tor-error = { version = "0.40.0", path = "../tor-error" }
tor-llcrypto = { version = "0.40.0", path = "../tor-llcrypto" }

[dev-dependencies]
signature = "2"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.40.0" }
tor-llcrypto = { version = "0.40.0", path = "../tor-llcrypto", features = ["testing"] }

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