simple-pool 0.0.14

Simple async pool for any kind of resources
Documentation
1
2
3
4
5
6
7
8
9
10
VERSION=$(shell grep ^version Cargo.toml|cut -d\" -f2)

all:
	@echo "Select target"

tag:
	git tag -a v${VERSION} -m v${VERSION}
	git push origin --tags

release: pub tag