set up project structure

This commit is contained in:
Robert 2022-12-09 20:49:54 +01:00
parent 33a8fda1bb
commit 7a41ba87b6
71 changed files with 1293 additions and 91 deletions

17
Makefile Normal file
View file

@ -0,0 +1,17 @@
b15f:
cargo build
test:
cargo test
bench:
cargo bench
doc:
cargo doc
rm -rf doc
cp -r target/doc .
all: b15f test
.PHONY: all