hato 0.2.1

Heterogeneous Arenas of Trait Objects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# list all available commands
help:
    @just --list

# lint and type check code with static analyzers
check:
    cargo fmt --check
    cargo clippy --tests --benches -- --deny warnings
    cargo check  --tests --benches
    RUSTDOCFLAGS='--deny warnings' cargo doc

# run code quality and logic checks
ci: check
    cargo      test -- --test-threads 1
    cargo miri test -- --test-threads 1