A collection of tools for D&D Dungeon Masters, organized as a Cargo workspace.
| Crate | Description |
|---|---|
combat |
Terminal UI for managing combat encounters — initiative, HP, actions, rounds |
# Run a specific crate
cargo run -p combat
# Build all crates
cargo build
# Check all crates without building
cargo check
# Run tests for all crates
cargo test
# Run tests for a specific crate
cargo test -p combatLogs are written to output.log in the working directory. Suppress stderr to keep the terminal clean while running:
cargo run -p combat 2>/dev/null