ass-core 0.1.2

High-performance ASS subtitle format parser and analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parse delta operations for streaming updates
//!
//! Provides delta tracking for efficient incremental parsing and editor
//! integration. Deltas represent minimal changes between parsing states.

mod batch;
mod parse_delta;

#[cfg(test)]
mod batch_tests;
#[cfg(test)]
mod delta_tests;

pub use batch::DeltaBatch;
pub use parse_delta::ParseDelta;