Install rust from rustup.rs and you will have
- rustc the rust compiler.
- rustup manages our Rust version.
- cargo is our main tool used during development.
https://github.com/outersky/simple_excel_writer
https://github.com/blackbeam/rust-mysql-simple
Run cargo build to download and install the dependencies
cargo build
If needed to update your dependencies to the latest versions.
cargo update
To run the script in debug mode
cargo run
To build the script in release mode
cargo build --release