mlua-socket 0.1.2

A Rust-native implementation of LuaSocket 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