tiger-lib 1.9.1

Library used by the tools ck3-tiger, vic3-tiger, and imperator-tiger. This library holds the bulk of the code for them. It can be built either for ck3-tiger with the feature ck3, or for vic3-tiger with the feature vic3, or for imperator-tiger with the feature imperator, but not both at the same time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
set -e

# This is the recommended pre-commit hook when developing tiger.
# Copy it to .git/hooks/pre-commit to start using it.
# It will run automatically before every commit, and abort the commit
# if an error is found.

cargo fmt --check
cargo clippy -p ck3-tiger
cargo clippy -p vic3-tiger
cargo clippy -p imperator-tiger
cargo clippy -p utils
cargo doc --features "ck3 vic3 imperator hoi4" --no-deps --document-private-items
cargo +1.84 check