blob: 34c2ed9b336b50be7fcfada10305f22bfac08c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[package]
name = "keygen-openssh-test"
version = "0.1.0"
edition = "2021"
publish = false
authors = ["The Tor Project, Inc.", "Gabriela Moldovan <[email protected]>"]
rust-version = "1.83"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Tool used by arti to generate OpenSSH keys for testing"
[dependencies]
base32 = "0.5"
clap = { version = "4.3.24", features = ["derive"] }
rand = "0.9.1"
rand_core = { version = "0.9.3", features = ["os_rng"] }
ssh-key = { version = "0.6.1", features = ["dsa", "alloc", "rand_core", "std"] }
tor-basic-utils = { path = "../../crates/tor-basic-utils" }
tor-keymgr = { path = "../../crates/tor-keymgr", features = ["keymgr"] }
tor-llcrypto = { path = "../../crates/tor-llcrypto", features = ["relay", "rng-compat", "cvt-x25519"] }
[features]
full = ["tor-basic-utils/full", "tor-keymgr/full", "tor-llcrypto/full"]
|