1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
// Syntax highlighting
extern crate syntect;

// Grapheme cluster iteration
extern crate unicode_segmentation;

pub mod buffer;
mod workspace;

pub use buffer::Buffer;
pub use workspace::Workspace;