This commit is contained in:
Pierre Dubouilh
2021-10-10 12:15:39 +02:00
parent d9f5d8139d
commit 70cbeae0ed
10 changed files with 880 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
build:
cargo build
cargo clippy
cargo fmt
run:
cargo run -- -s=/tmp/sshdtest -c=/tmp/clftest
watch:
ls src/*.rs | entr -rc -- make run
test:
cargo test
watch-test:
ls src/*.rs | entr -rc -- make test
release:
cargo build --target x86_64-unknown-linux-musl --release
ci: test
cargo fmt --all -- --check
cargo clippy -- -D warnings