Upload spectral-core/src/lib.rs
Browse files- spectral-core/src/lib.rs +15 -0
spectral-core/src/lib.rs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
//! Spectral Terminal Core — Grid, VT Parser, and Damage Tracking
|
| 2 |
+
|
| 3 |
+
pub mod ansi;
|
| 4 |
+
pub mod cell;
|
| 5 |
+
pub mod color;
|
| 6 |
+
pub mod config;
|
| 7 |
+
pub mod damage;
|
| 8 |
+
pub mod grid;
|
| 9 |
+
pub mod term;
|
| 10 |
+
|
| 11 |
+
pub use cell::{Cell, CellFlags};
|
| 12 |
+
pub use color::Rgb8;
|
| 13 |
+
pub use config::{Config, CursorStyle};
|
| 14 |
+
pub use grid::{Grid, Line};
|
| 15 |
+
pub use term::Terminal;
|