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
//! Content-addressed filesystem blob store and SQLite index.
//!
//! See SPEC.md §8 and SPEC §8 (sharding) for the on-disk format.

pub mod fs;
pub mod sqlite;

pub use fs::{Store, StoreError};
pub use sqlite::{Index, IndexError, ReplayRecord, TraceRecord};