convertx 0.1.0

Multipurpose Units Converter
1
2
3
4
5
6
7
8
9
10
11
build-docs:  ## Build docs for Github Pages

	rm -rf ./docs

	cargo doc --no-deps

	echo "<meta http-equiv=\"refresh\" content=\"0; url=convertx\">" > target/doc/index.html

	cp -r target/doc ./docs


test:  ## Run unit tests

	cargo test


check:  ## Run cargo check with all features

	cargo check --workspace --all-targets --all-features