yaml_database_schema_parser 0.1.0

A YAML parser for database schema files
Documentation
run:
	cargo run data/test_schema.yaml

test:
	cargo test

fmt:
	cargo fmt --all

clippy:
	cargo clippy --all-targets --all-features -- -D warnings

check: fmt clippy test

release:
	cargo build --release

clean:
	cargo clean

doc:
	cargo doc --open
precommit: fmt lint test