116293519d
CI / Check (push) Has been cancelled
CI / Detect Changes (push) Has been cancelled
CI / Deploy Agent (push) Has been cancelled
CI / Deploy Dashboard (push) Has been cancelled
CI / Deploy Docs (push) Has been cancelled
CI / Deploy MCP (push) Has been cancelled
23 lines
602 B
TOML
23 lines
602 B
TOML
[package]
|
|
name = "compliance-smoke"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Tiny Axum service exercising compliance-core M7.1 tenant gating. Run smoke.sh against it before merging anything that touches the auth/tenant path."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "compliance-smoke"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
compliance-core = { workspace = true, features = ["axum"] }
|
|
axum = "0.8"
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true }
|