commandlines 0.5.1

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

fmt:
	cargo fmt --verbose

publish:
	cargo publish

test: fmt
	cargo test


.PHONY: doc fmt publish test