human-string-filler 1.0.0

A tiny template language for human-friendly string substitutions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e
export RUSTFLAGS="-D warnings"
export RUSTDOCFLAGS="-D warnings"
for release in "" "--release"; do
	for subcommand in clippy test doc; do
		cargo $subcommand $release
		cargo $subcommand $release --no-default-features
		cargo $subcommand $release --no-default-features --features alloc
	done
done

RUSTDOCFLAGS="-D warnings --cfg docsrs" cargo +nightly doc --all-features --no-deps