dbgcmd 0.1.0

This is a simple library for implementing command-line-style debug consoles within an application. It doesn't handle rendering, or the logic of any individual commands. All it does is model the state of the console.
Documentation
#!/bin/bash

set -e

echo -e "\033[36;1mRunning debug tests:\033[0m"
cargo test

echo -e "\033[36;1mRunning debug/force-enabled tests:\033[0m"
cargo test --features force-enabled

echo -e "\033[36;1mRunning release tests:\033[0m"
cargo test --release

echo -e "\033[36;1mRunning release/force-enabled tests:\033[0m"
cargo test --release --features force-enabled

echo -e "\033[36;1mRunning rustfmt:\033[0m"
cargo fmt -- --check

echo -e "\033[36;1mRunning clippy:\033[0m"
cargo clippy -- -D clippy::all