configuration 0.9.0

The package provides a means of configuration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: all
all: check test

.PHONY: check
check:
	cargo clippy --no-default-features -- -D warnings
	cargo clippy --all-features -- -D warnings
	cargo fmt --all -- --check

.PHONY: test
test:
	cargo test --no-default-features
	cargo test --all-features