graphity 2.0.0

Model signal flow between nodes within a directed graph.
Documentation
.PHONY: all
all: format lint check test

.PHONY: format
format:
	cargo fmt

.PHONY: lint
lint:
	cargo clippy

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

.PHONY: test
test:
	cargo test