fido_ssh_maker/Cargo.toml

21 lines
528 B
TOML
Raw Normal View History

2023-08-14 10:04:07 -05:00
[package]
name = "fido_ssh_maker"
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"
2023-08-16 09:36:05 -05:00
bitflags = "2.4.0"
2023-08-14 10:04:07 -05:00
clap = { version = "4.3.21", features = ["derive"] }
ctrlc = "3.4.0"
dialoguer = "0.10.4"
gethostname = "0.4.3"
2023-08-28 14:45:57 -05:00
libfido2 = { version = "0.1.0", path = "../libfido2" }
2023-08-28 09:14:24 -05:00
p256 = "0.13.2"
rand = "0.8.5"
2023-08-14 10:15:40 -05:00
ssh-encoding = { version = "0.2.0" }
ssh-key = { version = "0.6.0", features = ["ed25519"] }
whoami = "1.4.1"