weap 0.1.3

一个简单实用的命令行小工具
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: test build release clean

test:
	cargo test

build:
	cargo build --release

release:
	cargo publish --registry crates-io

clean:
	cargo clean