iced_term/
lib.rs

1pub mod actions;
2pub mod bindings;
3pub mod settings;
4
5mod backend;
6mod font;
7mod terminal;
8mod theme;
9mod view;
10
11pub use alacritty_terminal::event::Event as AlacrittyEvent;
12pub use alacritty_terminal::term::TermMode;
13pub use terminal::{Command, Event, Terminal};
14pub use theme::{ColorPalette, Theme};
15pub use view::TerminalView;