23 lines
566 B
TOML
23 lines
566 B
TOML
[package]
|
|
name = "crc"
|
|
version = "3.4.0"
|
|
authors = ["Rui Hu <code@mrhooray.com>", "Akhil Velagapudi <4@4khil.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/mrhooray/crc-rs.git"
|
|
documentation = "https://docs.rs/crc"
|
|
description = "Rust implementation of CRC with support of various standards"
|
|
keywords = ["crc", "crc16", "crc32", "crc64", "hash"]
|
|
categories = ["algorithms", "no-std"]
|
|
edition = "2021"
|
|
rust-version = "1.83"
|
|
|
|
[dependencies]
|
|
crc-catalog = "2.4.0"
|
|
|
|
[dev-dependencies]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = true
|