38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "ops-keeper"
|
|
version.workspace = true
|
|
description = "Keeper daemon and CLI for JWT-signing provisioning ops commands (ADR-037)"
|
|
|
|
[[bin]]
|
|
name = "keeper-daemon"
|
|
path = "bin/keeper_daemon.rs"
|
|
|
|
[[bin]]
|
|
name = "keeper-cli"
|
|
path = "bin/keeper_cli.rs"
|
|
|
|
[lib]
|
|
name = "ops_keeper"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-nats = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
clap = { workspace = true }
|
|
jsonwebtoken = { workspace = true }
|
|
globset = { workspace = true }
|
|
bytes = { workspace = true }
|
|
toml = { workspace = true }
|
|
futures = { workspace = true }
|
|
base64 = { workspace = true }
|