blob: 9e64bf2201d085eb0020a86ba924b7614d6d5e4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[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.40" }
tor-hsservice = { path = "../../crates/tor-hsservice", version = "0.40" }
tor-llcrypto = { path = "../../crates/tor-llcrypto", version = "0.40", features = ["rng-compat"] }
x25519-dalek = { version = "2", features = ["static_secrets"] }
|