build:
    cargo build
clean:
    cargo clean
test:
    cargo test --all
update:
    cargo update
clippy:
    cargo clippy --all --all-targets
bench:
    cargo bench
pedantic:
    cargo clippy --all --all-targets --features pedantic
alias fmt := rustfmt
rustfmt:
    cargo fmt --all -- --check
check: rustfmt update test clippy
lint:
    cargo run --example ec2 > ec2
    cfn-lint ec2
    rm -f ec2
