blob: 89c130e7ed75734139173f6cda718e545884b08f (
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.89"
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.8" }
tor-basic-utils = { path = "../../crates/tor-basic-utils", version = "0.42" }
tor-hsservice = { path = "../../crates/tor-hsservice", version = "0.42" }
tor-llcrypto = { path = "../../crates/tor-llcrypto", version = "0.42", features = ["rng-compat"] }
x25519-dalek = { version = "2", features = ["static_secrets"] }
[features]
full = [
"safelog/full",
"tor-basic-utils/full",
"tor-hsservice/full",
"tor-llcrypto/full",
]
|