#!/bin/bash cargo clean # Also clean the cache (will require re-downloading dependencies) cargo cache -a # Update the dependencies cargo update # Build the project cargo lcheck --release --bin rem-controller cargo build --release --bin rem-controller # Run the project cargo run --release --bin rem-controller test