27 lines
854 B
TOML
27 lines
854 B
TOML
[package]
|
|
name = "ssh-cert-dist-common"
|
|
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 = { version = "0.6.1" }
|
|
axum-extra = { version = "0.4.1", features = ["typed-routing"] }
|
|
chrono = "0.4.26"
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
serde = { version = "1.0.148", features = ["derive"] }
|
|
ssh-key = { version = "0.6.0-pre.0", features = ["ed25519", "p256", "p384", "rsa"] }
|
|
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"
|
|
shell-escape = "0.1.5"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
|