stan 0.0.16

NATS Streaming client based on official NATS rust client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.DEFAULT_GOAL := run

.PHONY: run
run:
	cargo run

.PHONY: test
test:
	cargo test

.PHONY: readme
readme:
	cargo readme > README.md

.PHONY: publish
publish: test readme
	cargo publish