parley_ratatui 0.2.1

Render Ratatui buffers through Parley and Vello into WGPU textures.
Documentation
//! A Ratatui backend that renders through Parley and Vello.
//!
//! `ParleyBackend` records Ratatui's cell updates in memory. `TerminalRenderer`
//! turns that buffer into a Vello scene and can render the scene into any
//! compatible `wgpu::Texture`.

mod backend;
mod color;
mod renderer;
mod text;

pub use backend::ParleyBackend;
pub use color::{Rgba, Theme};
pub use renderer::{
    AsyncTextureReadback, GpuRenderer, RenderError, TerminalRenderer, TextureReadback,
    TextureTarget,
};
pub use text::{BundledFont, FontOptions, FontSource, FontStack, TextMetrics};

pub use ratatui;
pub use vello;