crcxx 0.3.0

The crate compute CRC-8/16/32/64/128 using various methods. Included catalog of CRC parameters simplify usage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# eg triples
# armv7-unknown-linux-gnueabihf
# aarch64-unknown-linux-gnu
# x86_64-unknown-linux-gnu

default:
  @just --list --unsorted --color=always | rg -v "    default"

# Format source code
fmt:
    cargo +nightly fmt

clippy:
  cargo +nightly clippy --workspace

# Build selected TARGET for ARCH
build TRIPLE:
  cross build --target {{ TRIPLE }} --release