qiniu-utils 0.0.6

Qiniu SDK Utilities for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: all build build_release build_test doc test clean clippy

all: build doc
build:
	cargo build
build_release:
	cargo build --release
build_test:
	cargo test --no-run
doc:
	cargo test --doc
	cargo +nightly doc --lib --release --all-features
test:
	cargo test -- --show-output
clean:
	cargo clean
clippy:
	cargo +nightly clippy --examples --tests --all-features -- -D warnings --no-deps