compile-time-crc32 0.1.2

A library for taking the crc32 of a string or byte literal at compile time
Documentation
use compile_time_crc32::crc32;

#[test]
fn main() {
    println!("{:X}", crc32!(b"test"));
}