shadow-diff 3.0.3

Core parser, writer, content-addressed store, replay engine, and nine-axis behavioral differ for the Shadow tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Replay engine and the `LlmBackend` trait.
//!
//! See SPEC.md §10 for the lifecycle and SPEC §10 for the algorithm.

pub mod backend;
pub mod engine;
pub mod mock;

pub use backend::{LlmBackend, LlmError};
pub use engine::{run_replay, Clock, FixedClock, ReplayError};
pub use mock::MockLlm;