postgres-es2 0.2.2

A Postgres implementation of an event store for cqrs-es.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

all:
	cargo build

up:
	docker-compose up -d

down:
	docker-compose down

test:
	cargo test

doc:
	cargo doc --lib --no-deps

deploy:
	cargo publish --token ${CRATES_IO_TOKEN}