fbsim-core 1.0.0-beta.1

A library for american football simulation
Documentation
BUILD_ARGS ?= --release
RELEASE_ARGS ?= --dry-run
LINT_ARGS ?= --all-targets --all-features -- -D warnings

build:
	cargo build $(BUILD_ARGS)

test:
	cargo test

release:
	cargo publish $(RELEASE_ARGS)

lint:
	cargo clippy $(LINT_ARGS)

sec-dependencies:
	cargo install cargo-audit

sec:
	cargo audit