[package] name = "aura-analysis" edition.workspace = true version.workspace = true license.workspace = true publish.workspace = true [dependencies] aura-core = { path = "../aura-core" } # serde is admitted under the amended C16 per-case dependency policy (INDEX.md): # it gives the run-report types a typed (de)serialization path for the run # registry (cycle 0029). serde's output is deterministic (C1-safe). serde = { workspace = true } [dev-dependencies] # serde_json is used only by this crate's round-trip tests (the production types # derive serde, but JSON rendering lives in aura-engine's RunReport::to_json). # Test-only -> dev-dependencies, so it never enters the frozen artifact's library # link (C16 frozen-artifact scrutiny). serde_json = { workspace = true }