async-wsocket 0.5.2

Async WebSocket library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
check-fmt:
	cargo fmt --all -- --config format_code_in_doc_comments=true --check

fmt:
	cargo fmt --all -- --config format_code_in_doc_comments=true

check: fmt
	cargo check
	cargo check --target wasm32-unknown-unknown
	cargo clippy -- -D warnings
	cargo clippy --target wasm32-unknown-unknown -- -D warnings

precommit: fmt check