mrhooray / crc-rs

Rust implementation of CRC(16, 32, 64) with support of various standards
Apache License 2.0
187 stars 49 forks source link

Add docs for compile-time vs runtime table generation #82

Open akhilles opened 1 year ago

akhilles commented 1 year ago

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.