ceresdb-client 1.0.2

Rust implementation of CeresDB client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
SHELL = /bin/bash

DIR=$(shell pwd)

fmt:
	cd $(DIR); cargo fmt -- --check

clippy:
	cd $(DIR); cargo clippy --all-targets --all-features -- -D warnings

test:
	cd $(DIR); cargo test --workspace -- --test-threads=4