rnk 0.19.1

A React-like declarative terminal UI framework for Rust, inspired by Ink and Bubbletea
Documentation
1
2
3
4
5
6
7
8
9
10
//! Reconciliation system for efficient UI updates
//!
//! The reconciler compares old and new VNode trees to produce
//! minimal patches that can be applied incrementally.

mod diff;
mod registry;

pub use diff::{Patch, diff, diff_children};
pub use registry::{ComponentInstance, ComponentRegistry};