1.1 KiB
1.1 KiB
Assurance Run — 2025-12-18
- Commit:
352a178aff - Toolchain:
rustc 1.92.0 (ded5c06cf 2025-12-08),cargo 1.92.0 (344c4567c 2025-10-21) - Host:
macOS / Apple Silicon
| Check | Status | Notes |
|---|---|---|
cargo fmt --check |
❌ | rustfmt wants to wrap long chains and struct literals (e.g. command-center/src/routes.rs, command-center/src/logs.rs, node-agent/src/main.rs). No changes applied; rerun cargo fmt to adopt the default style. |
cargo clippy --all-targets --all-features -- -D warnings |
❌ | Fails on unused variables (command-center/src/routes.rs:954), unused field/method (state.rs:108, state.rs:735), log reader patterns (logs.rs:48, logs.rs:371), derivable Default, io_other_error, etc. Exact diagnostics captured from the run. |
cargo test |
✅ (warn) | Tests pass; same unused-field/unused-variable warnings as above remain. |
cargo check --release |
✅ (warn) | Release build succeeds with the same warnings. |
Notes:
- Removed stale
target/directory (now rebuilt bycargo test). - No changes were saved to source files.