lector-browser 0.1.3

A high-performance graphical terminal web browser targeting Sixel first.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod app;
mod cli;
mod engine;
mod event;
mod graphics;
mod terminal;

fn main() {
    let config = cli::Config::parse();
    if let Err(error) = app::run(config) {
        eprintln!("lector: {error}");
        std::process::exit(1);
    }
}