diff --git a/implementations/rust/Makefile b/implementations/rust/Makefile new file mode 100644 index 0000000..944cc41 --- /dev/null +++ b/implementations/rust/Makefile @@ -0,0 +1,8 @@ +all: + cargo build --all-targets + +test: + cargo test + +test-all: + cargo test --all-targets