ssh_ca/Cargo.toml

18 lines
593 B
TOML
Raw Permalink Normal View History

2023-08-14 10:57:24 -05:00
[package]
name = "ssh_ca"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
chrono = "0.4.26"
clap = { version = "4.3.19", features = ["derive"] }
rand = "0.8.5"
serde = { version = "1.0.183", features = ["derive"] }
2023-08-14 12:52:14 -05:00
ssh-key = { version = "0.6.0", features = ["ed25519", "rsa", "encryption", "dsa", "p256", "p384", "rand_core"] }
ssh_attest_verifier = { git = "https://gitea.pterpstra.com/pjht/ssh_attest_verify.git", version = "0.1.0" }
2023-08-14 10:57:24 -05:00
toml = "0.7.6"
x509-parser = "0.15.1"