keyserv/Cargo.toml

20 lines
695 B
TOML

[package]
name = "keyserv"
version = "0.1.0"
description = "age key dispenser"
homepage = "https://git.pyrocufflink.net/dustin/keyserv"
authors = ["Dustin C. Hatch <dustin@hatch.name>"]
edition = "2021"
[dependencies]
age = { version = "0.9.2", features = ["ssh", "armor"] }
argh = "0.1.12"
axum = { version = "0.7.3", default-features = false, features = ["http1", "tracing", "tokio"] }
secrecy = "0.8.0"
ssh-key = { version = "0.6.3", features = ["ed25519"] }
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["rt", "macros", "net"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
yaml-rust = "0.4.5"