Flake lock file updates: • Updated input 'naersk': 'github:nmattia/naersk/6944160c19cb591eb85bbf9b2f2768a935623ed3' (2022-09-03) → 'github:nmattia/naersk/abca1fb7a6cfdd355231fc220c3d0302dbb4369a' (2023-07-05) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/5dc7114b7b256d217fe7752f1614be2514e61bb8' (2022-11-25) → 'github:NixOS/nixpkgs/3c7487575d9445185249a159046cc02ff364bff8' (2023-07-06) • Updated input 'utils': 'github:numtide/flake-utils/5aed5285a952e0b949eb3ba02c12fa4fcfef535f' (2022-11-02) → 'github:numtide/flake-utils/dbabf0ca0c0c4bce6ea5eaf65af5cb694d2082c7' (2023-06-25) • Added input 'utils/systems': 'github:nix-systems/default/da67096a3b9bf56a91d16901293e51ba5b49a27e' (2023-04-09)
45 lines
1.4 KiB
TOML
45 lines
1.4 KiB
TOML
[package]
|
|
name = "ssh-cert-dist-server"
|
|
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
|
|
|
|
[features]
|
|
default = [ "reload", "info", "authorized" ]
|
|
reload = []
|
|
authorized =[ "dep:jwt-compact" ]
|
|
index = []
|
|
info = [ "axum/json", "ssh-key/serde" ]
|
|
|
|
[[bin]]
|
|
name = "sshcd-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.66"
|
|
async-trait = "0.1.59"
|
|
axum = { version = "0.6.1", features = ["http2"] }
|
|
axum-extra = { version = "0.4.1", features = ["typed-routing"] }
|
|
chrono = "0.4.23"
|
|
clap = { version = "4.0.29", features = ["env", "derive"] }
|
|
jwt-compact = { version = "0.6.0", features = ["serde_cbor", "std", "clock"], optional = true }
|
|
rand = "0.8.5"
|
|
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"] }
|
|
tower = { version = "0.4.13" }
|
|
tower-http = { version = "0.3.4", features = ["map-request-body", "trace", "util"] }
|
|
tracing = { version = "0.1.37", features = ["release_max_level_debug"] }
|
|
tracing-subscriber = "0.3.16"
|
|
ssh-cert-dist-common = { path = "../common" }
|
|
shell-escape = "0.1.5"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
|
|
[profile.release]
|
|
opt-level = 1
|