atlasserver 0.3.0

Atlas is a rust library for the purpose of composing REST APIs out of re-usable and extensible modules, specifically with supporting the networking needs of online gaming services in mind.
1
2
3
4
5
6
7
8
9
10
11
12
13
14

check:
	cargo c
	cargo fmt -- --check
	cargo clean -p atlasserver
	cargo clippy
	cargo t
	cargo c --example custom_server
	cargo c --example graceful_shutdown

check-nightly:
	cargo +nightly c
	cargo +nightly clean -p atlasserver
	cargo +nightly clippy