cqrs-es2-store 0.1.0

Sync implementation of the cqrs-es2 store.
Documentation

all:
	make clean
	make build
	make doc

clean:
	rm -rf target
	rm -rf Cargo.lock
	rm -rf test.db*

build:
	cargo build

up:
	docker-compose up -d
	rm -rf test.db*

down:
	docker-compose down

test:
	cargo test

doc:
	cargo doc --lib --no-deps --all-features

deploy:
	cargo publish --token ${CRATES_IO_TOKEN}

dry_deploy:
	cargo publish --dry-run --allow-dirty

check_fmt:
	cargo +nightly fmt --all -- --check