61 lines
1.3 KiB
TOML
61 lines
1.3 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.83"
|
|
name = "crc"
|
|
version = "3.4.0"
|
|
authors = [
|
|
"Rui Hu <code@mrhooray.com>",
|
|
"Akhil Velagapudi <4@4khil.com>",
|
|
]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Rust implementation of CRC with support of various standards"
|
|
documentation = "https://docs.rs/crc"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"crc",
|
|
"crc16",
|
|
"crc32",
|
|
"crc64",
|
|
"hash",
|
|
]
|
|
categories = [
|
|
"algorithms",
|
|
"no-std",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/mrhooray/crc-rs.git"
|
|
|
|
[lib]
|
|
name = "crc"
|
|
path = "src/lib.rs"
|
|
|
|
[[test]]
|
|
name = "crc"
|
|
path = "tests/crc.rs"
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
path = "benches/bench.rs"
|
|
harness = true
|
|
|
|
[dependencies.crc-catalog]
|
|
version = "2.4.0"
|
|
|
|
[dev-dependencies]
|