32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "ssh-cert-dist-client"
|
|
version = "0.1.0"
|
|
authors = ["shimun <shimun@shimun.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.66"
|
|
async-trait = "0.1.59"
|
|
axum-extra = { version = "0.4.1", features = ["typed-routing"] }
|
|
chrono = "0.4.23"
|
|
clap = { version = "4.0.29", features = ["env", "derive"] }
|
|
rand = "0.8.5"
|
|
reqwest = { version = "0.11.13" }
|
|
serde = { version = "1.0.148", features = ["derive"] }
|
|
ssh-key = { version = "0.5.1", features = ["ed25519", "p256", "p384", "rsa", "signature"] }
|
|
thiserror = "1.0.37"
|
|
tokio = { version = "1.22.0", features = ["io-std", "test-util", "tracing", "macros", "fs"] }
|
|
tracing = { version = "0.1.37", features = ["release_max_level_debug"] }
|
|
tracing-subscriber = "0.3.16"
|
|
url = { version = "2.3.1" }
|
|
ssh-cert-dist-common = { path = "../common" }
|
|
|
|
[patch.crates-io]
|
|
ssh-key = { git = "https://github.com/a-dma/SSH.git", branch = "u2f_signatures" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
|