rio-backend 0.5.0-alpha.2

Backend infrastructure for Rio terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// The terminal core (VT state machine, parser, grid, selection, search,
// PTY event model, colors) now lives in the `rio-vt` crate. Re-export
// every module at its original `crate::`/`rio_backend::` path so nothing
// downstream (rioterm, tests) has to change. This crate keeps the
// user-facing config and the sugarloaf renderer glue.
pub use rio_vt::{
    ansi, clipboard, codepoint_width, crosswords, error, event, performer,
    selection, simd_base64, simd_utf8,
};

pub mod config;

#[cfg(test)]
mod graphics;

#[cfg(feature = "renderer")]
pub use sugarloaf;