docs.rs failed to build crc32-v2-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
crc32-v2-0.0.5
CRC32
Resurrecting the crc32 crate from the ashes.
Usage
Add crc32-v2 to your Cargo.toml file:
[]
= "0.0.2"
or run:
Examples
use crc32;
use ;
const CRC32_INIT: u32 = 0; // Initial CRC value, you can customize it
Warning The
dolit4anddolit32functions modify the inputcandbuf4posin place, so you should be careful when reusing these variables for subsequent CRC calculations.