Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Global Data in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The GitHub repository global-data-in-rust has a guide explaining how to use "global data" in Rust.
References
Use Tauri to Build a Desktop Application
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tauri is a framework for building tiny, blazing fast binaries for all major desktop platforms. Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their …
Compress and Decompress Files in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Please refer to Rust Crates - Compression Related for details. It is suggested that you use the Rust crate zstd as Zstandard is the best compression/decompression algorithm currently. For more discussions …
Calling Rust from Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tools
Rust bindings for Python, including tools for creating native Python extension modules. Running and interacting with Python code from a Rust binary is also supported.
Build and publish …
Tips on rustup
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Install rustup
Linux and macOS
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
Rust tools (rustc, cargo, rustup, etc)
will be added to Cargo's bin directory …