seblj/cargo-aoc

CLI option for optionally passing rustc flags

Closed this issue · 0 comments

cargo aoc run --arg "-C opt-level=3" --arg "--edition 2021"

Under the hood, this should run something like:

RUSTFLAGS="-C opt-level=3 --edition 2021" cargo run ...