mlua-json 0.1.0

A Rust-native implementation of lua-periphery for mlua.
FEATURES ?= "lua51"

.PHONY: build
build:
	cargo build --features ${FEATURES}


.PHONY: check
check:
	cargo clippy --features ${FEATURES} -- --no-deps
	cargo test --features ${FEATURES} -- --show-output --test-threads=1


.PHONY: fmt
fmt:
	cargo fmt --all


.PHONY: clean
clean:
	cargo clean


.PHONY: outdated
outdated:
	cargo install --locked cargo-outdated
	cargo outdated -R