summaryrefslogtreecommitdiff
path: root/maint/keygen-openssh-test/Cargo.toml
blob: 2912f3686542d64377c7ad23490f4528ec38218f (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 = "2024"
publish = false
authors = ["The Tor Project, Inc.", "Gabriela Moldovan <[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 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", version = "0.40" }
tor-keymgr = { path = "../../crates/tor-keymgr", version = "0.40", features = ["keymgr"] }
tor-llcrypto = { path = "../../crates/tor-llcrypto", version = "0.40", features = ["relay", "rng-compat", "cvt-x25519"] }

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