rmcl 0.3.1

A fully featured Minecraft TUI launcher
1
2
3
4
5
6
7
8
9
10
11
12
#[tokio::main]
async fn main() {
    rmcl::migrate_legacy_rename();

    // Guard must stay in scope to keep the log file writer alive
    let _guard = rmcl::tui::logging::init();
    if let Err(e) = color_eyre::install() {
        eprintln!("Failed to install color-eyre: {}", e);
    }

    rmcl::cli_init().await
}