clytia 0.2.1

A crate to make writing CLIs a bit nicer, a set of functions for common components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
_default:
    @just --list

# Runs clippy on the source
check:
    cargo clippy -- -D warnings

# builds the repo
build:
    cargo build

# Runs the non interactive tests
test:
    cargo test tests::non_interactive

# Runs cargo-fmt on the source
format:
    cargo fmt