rnk 0.17.3

A React-like declarative terminal UI framework for Rust, inspired by Ink
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, PatchType, diff, diff_children};
pub use registry::{ComponentInstance, ComponentRegistry};