gazpatcho 1.0.0

Simple node-based graph editor for Rust. Register nodes, let the user mingle with them, read the result.
.PHONY: clean
all: format lint check doc test

.PHONY: format
format:
	cargo fmt

.PHONY: lint
lint:
	cargo clippy

.PHONY: check
check:
	cargo check
	cargo check --examples

.PHONY: doc
doc:
	cargo doc

.PHONY: test
test:
	cargo test