mrhooray / crc-rs

Rust implementation of CRC(16, 32, 64) with support of various standards

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add docs for compile-time vs runtime table generation

akhilles opened this issue · comments

If binary size is important, it's better to generate the CRC tables (once) at runtime instead of embedding them into the binary. This should be explained in the docs along with an example.