unscrupulous 0.1.0

Types that do not care about provenance.
Documentation
1
2
3
4
5
6
7
8
9
10
# list all available commands
help:
    @just --list

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