.PHONY: all build test clean run

all: build

build:
	cargo build

test:
	cargo test

clean:
	cargo clean

run:
	cargo run --example demo
