mirror of
https://github.com/jht5945/rust_util.git
synced 2025-12-27 15:40:03 +08:00
17 lines
177 B
Makefile
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
|
|
|