async-utility 0.3.1

Collection of async utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
precommit:
	cargo fmt --all -- --config format_code_in_doc_comments=true
	cargo check
	cargo clippy
	cargo test
	cargo check --target wasm32-unknown-unknown
	cargo clippy --target wasm32-unknown-unknown

clean:
	cargo clean

loc:
	@echo "--- Counting lines of .rs files (LOC):" && find src/ -type f -name "*.rs" -exec cat {} \; | wc -l