strict-yaml-rust 0.2.0

A StrictYAML parser obtained by savagely chopping up the original yaml-rust crate.
Documentation
#!just
# Sane make-like command runner: https://github.com/casey/just

# Default target
all: format test examples lint

# Unit and doc tests
test:
	cargo test --features serde

examples:
	cargo build --examples

#bench:
#	cargo +nightly bench --features="bench"

format:
	cargo fmt

lint:
	cargo clippy

clean:
	cargo clean

# Build all and then publish to crates.io.
publish: all
	cargo publish