const-crc32/Cargo.toml

15 lines
386 B
TOML
Raw Normal View History

2022-10-05 09:46:04 -07:00
[package]
name = "const-crc32"
2023-09-06 10:58:07 -07:00
version = "1.3.0"
2022-10-05 09:46:04 -07:00
edition = "2021"
authors = ["Jonathan Strong <jstrong@shipyard.rs>"]
license = "MIT"
description = "A `const fn` implementation of crc32 checksum algorithm"
repository = "https://git.shipyard.rs/jstrong/const-crc32"
keywords = ["checksum", "crc", "crc32", "const"]
2022-10-05 09:52:31 -07:00
readme = "README.md"
2022-10-05 09:46:04 -07:00
[dev-dependencies]
crc32fast = "1.2"
rand = "0.8"