cli 0.0.1

One Rust crate for creating beautiful command line applications.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
build:
	@cargo build

test:
	@RUST_TEST_TASKS=1 cargo test

docs:
	@cargo doc --no-deps --open

update-rust:
	@curl -s https://static.rust-lang.org/rustup.sh | sudo sh

upload-docs: docs
	@./upload-docs.sh

.PHONY: build test docs