deadnews-template-rust 0.1.2

Rust Project Template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
build:
	cargo build

checks: test fmt clippy

test:
	cargo test --all-features --workspace

fmt:
	cargo fmt --all --check

clippy:
	cargo clippy --all-targets --all-features --workspace -- -D warnings

doc:
	cargo doc --no-deps --document-private-items --all-features --workspace --examples