commandlines 0.8.0

A command line argument parsing library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
doc: fmt
	cargo doc --open

fmt:
	cargo fmt --verbose

lint: fmt
	cargo clippy --all-targets --all-features

publish:
	cargo publish

test: fmt
	cargo test --verbose


.PHONY: doc fmt lint publish test