1
0
mirror of https://github.com/jht5945/rust_util.git synced 2025-12-27 15:40:03 +08:00
Files
rust_util/justfile
2021-01-03 11:05:22 +08:00

17 lines
177 B
Makefile

_:
@just --list
# example log
log:
cargo run --example log
# publish
publish:
cargo publish
# test all
test:
cargo test
cd demo/test_clap; cargo build; cargo test