rovkit 0.0.5

rust kit for my self
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


clean:
	cargo clean

.PHONY: build
build: clean
	cargo build --release

test: build
	cargo test

package: build test
	cargo package
	cargo publish --dry-run --registry default

publish: package
	cargo publish --registry default