draxl 0.1.0

Agent-native source for semantic program control.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: fmt check publish-dry publish

fmt:
	cargo fmt --all

check:
	cargo fmt --all --check
	cargo test --workspace

publish-dry: check
	cargo publish -p draxl --dry-run

publish: check
	cargo publish -p draxl