summaryrefslogtreecommitdiff
path: root/maint/keygen-client-auth-test/Cargo.toml
blob: 4d1d4bbdbae4ada083c25b8df195b621c03a5501 (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
[package]
name = "keygen-client-auth-test"
version = "0.1.0"
edition = "2024"
publish = false
authors = ["The Tor Project, Inc.", "hjrgrn <[email protected]>"]
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Tool used to generate a client authorization keypair for testing"

[dependencies]
anyhow = "1.0.100"
base32 = "0.5"
clap = { version = "4.5.53", features = ["derive"] }
regex = "1.12.2"
safelog = { path = "../../crates/safelog", version = "0.9" }
tor-basic-utils = { path = "../../crates/tor-basic-utils", version = "0.44" }
tor-hsservice = { path = "../../crates/tor-hsservice", version = "0.44" }
tor-llcrypto = { path = "../../crates/tor-llcrypto", version = "0.44", features = ["rng-compat"] }
x25519-dalek = { version = "2", features = ["static_secrets"] }

[features]
full = [
    "safelog/full",
    "tor-basic-utils/full",
    "tor-hsservice/full",
    "tor-llcrypto/full",
]