pub-sub-client 0.12.0

Google Cloud Pub/Sub client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set shell := ["bash", "-uc"]

check:
	cargo check --tests

fmt:
	cargo +nightly fmt

fmt_check:
	cargo +nightly fmt --check

lint:
	cargo clippy --no-deps -- -D warnings

test:
	cargo test

all: fmt check lint test