e62rs 1.5.0

An in-terminal E621/926 browser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(feature = "cli"))]
compile_error!("the `cli` feature is required to build the e62rs binary");

#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

#[cfg(feature = "cli")]
#[tokio::main]
async fn main() -> e62rs::error::Result<()> {
    let app = e62rs::app::E6App::init().await?;
    app.run().await
}