18 lines
593 B
TOML
18 lines
593 B
TOML
[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"] }
|
|
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" }
|
|
toml = "0.7.6"
|
|
x509-parser = "0.15.1"
|