compile-time-crc32

Crates.iocompile-time-crc32
lib.rscompile-time-crc32
version0.1.2
sourcesrc
created_at2019-11-22 21:15:09.305807
updated_at2019-11-22 21:41:52.266249
descriptionA library for taking the crc32 of a string or byte literal at compile time
homepagehttps://docs.rs/compile-time-crc32
repositoryhttps://github.com/jam1garner/compile-time-crc32
max_upload_size
id183593
size1,974
(jam1garner)

documentation

README

compile-time-crc32

A macro for taking the crc32 of a string or bytes literal at runtime.

Example:

use compile_time_crc32::crc32;

fn main() {
    assert_eq!(0xD87F7E0C, crc32!("test"));
}
Commit count: 2

cargo fmt