//! Pure-Rust analysis core for pounce-studio.
//!
//! Loads `pounce.solve-report/v1` JSON (see
//! `crates/pounce-cli/src/solve_report.rs` for the writer) and parses
//! `POUNCEIT v1` binary iter-dumps (see `tools/iter-dump/FORMAT.md`),
//! then exposes derived series: convergence-stall detection, restoration
//! window extraction, common-failure-mode diagnostics, side-by-side
//! comparisons, and a Markdown summary renderer.
//!
//! The library is intentionally WASM-clean: it takes byte slices and
//! returns owned data, never touching `std::fs`. The bundled
//! `pounce-studio` binary in `src/bin/` is the file-I/O front-end.
//!
//! # Versioning
//!
//! The JSON schema is pinned to [`SOLVE_REPORT_SCHEMA`]; loading any
//! other tag is rejected with [`Error::SchemaMismatch`]. The binary
//! format is pinned to [`iter_dump::FORMAT_VERSION`]. Both can be
//! widened additively (new optional fields) without bumping; breaking
//! changes bump the major version and add a new branch here.
pub use ;
pub use ;
pub use ;