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
//! Performance issue detection rule for ASS script linting.
//!
//! Detects potential performance issues in subtitle scripts that could
//! impact rendering speed, memory usage, or playback smoothness.

mod rule;

#[cfg(test)]
mod tests;

pub use rule::PerformanceRule;