luhnmod10 1.0.0

Fast and simple in-place implementation of the luhn (mod 10) algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
all: build test bench

build:
	rustup run stable cargo build

test:
	rustup run stable cargo test

bench:
	rustup run nightly cargo bench

release:
	rustup run stable cargo publish