rust_socketio 0.1.1

An implementation of a socketio client written in async rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: build test clippy format

build: 
	@cargo build --verbose

test:
	@cargo test --verbose --package rust_socketio --lib -- socketio::packet::test 

clippy:
	@cargo clippy --verbose

format:
	@cargo fmt --all -- --check

checks: build test clippy format
	@echo "### Don't forget to add untracked files! ###"
	@git status
	@echo "### Awesome work! 😍 ###"""