clankerdiff-ratatui 0.1.0

Embeddable Ratatui diff review widget
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Reusable test and benchmark support.
//!
//! Enable the `test-support` feature from integration tests and benchmarks
//! alongside the features whose support is needed. The review harness owns a
//! real Ratatui terminal and the production review state so input, rendering,
//! terminal diffing, and syntax caches are all exercised together.

mod backend;
#[cfg(feature = "markdown")]
mod markdown;
#[cfg(feature = "diff-review")]
mod review;

pub use backend::{BackendStats, CountingBackend};
#[cfg(feature = "markdown")]
pub use markdown::MarkdownStreamFixture;
#[cfg(feature = "diff-review")]
pub use review::*;