Files
zterm/src/lib.rs
T
Zacharias-Brohn 5c3eee3448 font rendering
2025-12-16 16:55:10 +01:00

12 lines
272 B
Rust

//! ZTerm - A GPU-accelerated terminal emulator for Wayland.
//!
//! Single-process architecture: one process owns PTY, terminal state, and rendering.
pub mod config;
pub mod graphics;
pub mod keyboard;
pub mod pty;
pub mod renderer;
pub mod terminal;
pub mod vt_parser;