emergent 1.5.9

Toolset for producing emergent gameplay for games written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# List the just recipe list
list:
    just --list

# Mandatory checks to run before pushing changes to repository
checks:
    cargo fmt
    cargo build
    cargo clippy
    cargo test

# Test and build the book
book:
    mdbook build book
    mdbook test book -L ./target/debug/deps