31 lines
910 B
TOML
31 lines
910 B
TOML
|
|
[package]
|
||
|
|
authors.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
name = "audit-mirror"
|
||
|
|
version.workspace = true
|
||
|
|
description = "NATS ops.audit.* → Radicle git commit sidecar with jti idempotency (ADR-038)"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "audit-mirror"
|
||
|
|
path = "src/main.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 }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
clap = { workspace = true }
|
||
|
|
futures = { workspace = true }
|
||
|
|
git2 = { workspace = true }
|
||
|
|
bytes = { workspace = true }
|
||
|
|
reqwest = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tempfile = { workspace = true }
|