chore: add rust build and bench scripts

This commit is contained in:
Kim, Jimin 2024-05-25 21:13:31 +09:00
parent 7bcdddbf40
commit 824c350cda
Signed by: pomp
GPG key ID: D3932F82A0667A3B

View file

@ -1,2 +1,8 @@
@build-rust:
cd rust && cargo build --release
@run-rust:
cd rust && cargo run --quiet < ../input.txt
@bench-rust: build-rust
hyperfine './rust/target/release/playground < ./input.txt'