-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
36 lines (30 loc) · 882 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "crc-any"
version = "2.5.0"
authors = ["Magic Len <[email protected]>"]
edition = "2021"
rust-version = "1.60"
repository = "https://github.com/magiclen/crc-any"
homepage = "https://magiclen.org/crc-any"
keywords = ["hash", "crc", "crc16", "crc32", "crc64"]
categories = ["no-std", "algorithms"]
description = "To compute CRC values by providing the length of bits, expression, reflection, an initial value and a final xor value. It has many built-in CRC functions."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE", "benches/bench.rs"]
[dependencies]
[dependencies.debug-helper]
version = "0.3"
optional = true
[dependencies.heapless]
version = "0.8"
optional = true
[dev-dependencies]
bencher = "0.1.5"
[features]
default = ["alloc"]
alloc = ["debug-helper"]
std = []
development = ["std"]
[[bench]]
name = "bench"
harness = false