forked from didirus/AstralRinth
* Implement a more robust IPC system between the launcher and client * Clippy fix and cargo fmt * Switch to cached JsonReader with LENIENT parsing to avoid race conditions * Make RPC send messages in lines * Try to bind to either IPv4 or IPv6 and communicate version * Move message handling into a separate function to avoid too much code in a macro
10 lines
165 B
Rust
10 lines
165 B
Rust
//! Theseus utility functions
|
|
pub mod fetch;
|
|
pub mod io;
|
|
pub mod jre;
|
|
pub mod network;
|
|
pub mod platform;
|
|
pub mod protocol_version;
|
|
pub mod rpc;
|
|
pub mod server_ping;
|