initial commit
This commit is contained in:
commit
81b7c68bb3
9 changed files with 135 additions and 0 deletions
16
justfile
Normal file
16
justfile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
build *ARGS:
|
||||
cargo build {{ARGS}}
|
||||
|
||||
test *ARGS:
|
||||
cargo test {{ARGS}}
|
||||
|
||||
fmt:
|
||||
fd -e rs -x rustfmt +nightly {}
|
||||
|
||||
doc:
|
||||
cargo doc
|
||||
fd -e md . doc/ -x rustdoc {}
|
||||
fd -e html . doc/ -x mv {} target/doc/argus/
|
||||
|
||||
serve-doc: doc
|
||||
python3 -m http.server -d target/doc/
|
||||
Loading…
Add table
Add a link
Reference in a new issue