bullet-exchange-interface 0.7.0

Type definitions and message formats for the Bullet exchange protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: fmt-fix

fmt-fix:
	cargo +nightly fmt --all -- --config-path rustfmt.nightly.toml

clippy-fix:
	cargo +nightly clippy --all-targets --all-features -- -D warnings

test:
	cargo test --all-features

ci:
	make fmt-fix
	make clippy-fix
	make test