dbgcmd 0.4.1

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
winittests:
    #cargo check --features winit_0_21 (doesn't work on arm macs)
    cargo check --features winit_0_24
    cargo check --features winit_0_27
    cargo check --features winit_0_29
    cargo check --features winit_0_30

alltests: winittests
    cargo test
    cargo test --features force-enabled
    cargo test --release
    cargo test --release --features force-enabled
    cargo fmt -- --check
    cargo clippy -- -D clippy::all

fmt:
    cargo fmt