rmcl 0.3.1

A fully featured Minecraft TUI launcher
// crate root. main.rs is a thin wrapper that imports the two entry points
// re-exported below; everything else stays crate-private. integration tests
// in tests/ that need to reach in deeper can use `rmcl::auth`, `rmcl::net`,
// etc. directly; cli + migrate stay private because they have nothing
// general to expose.

pub mod auth;
mod cli;
pub mod config;
pub mod instance;
pub mod instance_logs;
pub mod launch_profile;
mod migrate;
pub mod net;
pub mod running;
pub mod tui;

pub use cli::init as cli_init;
pub use migrate::run_legacy_rename as migrate_legacy_rename;