How to create Rust examples without running
3 answers
cargo test
runs examples.
To create them, I do this:
for i in examples/*; do cargo build --target=x86_64-pc-windows-gnu --verbose --example $(basename $i .rs); done
Delivery issue # 192 covers feature request for something like this.
0
source to share