egraph-serialize 0.3.0

A library to serialize e-graphs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all test nits

all: test nits

test:
	cargo test --all-features

nits:
	@rustup component add clippy
	cargo clippy --tests --all-features -- -D warnings
	@rustup component add rustfmt
	cargo fmt --check