From 3b4ccaafb0dbe7d9cc4f697eb85ac2c1a4155a82 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Wed, 16 Oct 2024 21:51:11 +0200 Subject: [PATCH] add the justfile to rust, update the other languages later --- rust/justfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 rust/justfile diff --git a/rust/justfile b/rust/justfile new file mode 100644 index 0000000..c1f10c3 --- /dev/null +++ b/rust/justfile @@ -0,0 +1,8 @@ +build: + cargo build + +test: + cargo test + +run: + cargo run