Backend — Application Entry Point & Build System
Location: src-tauri/src/ and src/
main.rs — Binary Entry Point
The binary entry point is intentionally minimal. It simply calls base_station_lib::run(), which l...
lib.rs — Application Bootstrap
lib.rs is where the entire Tauri application is configured and started. It does the following in ...
proto.rs — Protobuf Module
This file simply includes the generated Rust code for the packets protobuf module: rust pub mod p...
build.rs — Protobuf Compilation
The build script runs before the Rust compiler and is responsible for compiling all .proto files ...
tauri.conf.json — Application & Security Configuration
Window The app opens a single window titled base_station at 800×600. devtools is enabled, meaning...
Cargo.toml — Key Dependencies
CratePurposetauriDesktop app framework, with protocol-asset and devtools featurestokio (full)Asyn...