lowcharts 0.5.8

Tool to draw low-resolution graphs in terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pre-commit:
	cargo fmt -- --check
	cargo test -- --test-threads 1
	cargo clippy -- -D clippy::all

release:
	cargo build --release

test:
	cargo test -- --test-threads 1

# Sadly, this misses coverage for those integrations tests that use
# assert_cmd, as it does not follow forks
coverage:
	cargo tarpaulin -o Html --ignore-tests -- --test-threads 1

doc:
	cargo doc -p lowcharts