fair 0.0.13

CLI tool and library for verifying provably fair games (baccarat, etc.).
Documentation
1
2
3
4
5
6
7
8
9
10
.PHONY: release

src/games/wheel/payouts.rs: ./wheel-payouts-to-rust-arr.js
	node ./wheel-payouts-to-rust-arr.js > src/games/wheel/payouts.rs

release:
	# we have to build from scratch to ensure version in binary will be
	# updated
	rm -rf target/;
	cargo release $@;