dynamodb-tester 0.2.2

A simple library to make the test your code against dynamodb local easy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build:
	@cargo build

test:
	@cargo nextest run --all-features

release:
	@cargo release tag --execute
	@git cliff -o CHANGELOG.md
	@git commit -a -m "Update CHANGELOG.md" || true
	@git push origin master
	@cargo release push --execute

.PHONY: build test release