Nothing major, just a small project to learn the basics of web development and Rust.
This RestAPI provides a 2D array of random booleans (represented as one's and zeros) based on the columns and rows specified in the URL.
Requirements: cargo To run the release optimized version (longer compile times):
# Clone this repo
cd RustAPI-Random-Boolean-Matrix
cargo build --release
./target/release/rock
To run with a quicker compile time:
# Clone this repo
cd RustAPI-Random-Boolean-Matrix
cargo run