update:
  cargo update
clippy:
  cargo clippy
pedantic:
  cargo clippy --features pedantic
test:
  cargo test
build:
  cargo build
clean:
  cargo clean
fmt:
  cargo fmt -- --check
check: clean fmt pedantic test

