# SPDX-FileCopyrightText: 2023-2024 David Runge # SPDX-FileCopyrightText: 2023 Wiktor Kwapisiewicz # SPDX-License-Identifier: CC0-1.0 [package] authors = ["David Runge ", "Wiktor Kwapisiewicz "] description = "Command-line tool for creating and managing OpenPGP based trust anchors for SSH host keys" edition = "2021" homepage = "https://codeberg.org/wiktor/ssh-openpgp-auth" keywords = ["authentication", "host-key", "openpgp", "ssh", "trust-anchor"] license = "Apache-2.0 OR MIT" name = "sshd-openpgp-auth" repository = "https://codeberg.org/wiktor/ssh-openpgp-auth" version = "0.3.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.79" chrono = { version = "0.4.33", features = ["clock"] } clap = { version = "4.4.18", features = ["derive", "env"] } email_address = "0.2.4" fqdn = "0.3.2" sequoia-openpgp = "1.18.0" ssh-key = { version = "0.6.4", features = ["dsa", "ed25519", "rsa", "alloc"] } strum = { version = "0.26.1", features = ["derive", "strum_macros"] } thiserror = "1.0.56" [dev-dependencies] assert_cmd = "2.0.13" rstest = "0.18.2" testdir = "0.9.1" testresult = "0.3.0"