stevenkhan commited on
Commit
26d9400
·
verified ·
1 Parent(s): d5b6824

Upload spectral-core/src/lib.rs

Browse files
Files changed (1) hide show
  1. 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;