noncrypto-digests 0.3.7

Implement Digest trait for non-cryptographic hashing functions like fnv and xxhash
Documentation
[dependencies.digest]
version = "0.10.7"

[dependencies.fnv]
optional = true
version = "1.0.7"

[dependencies.xxhash-rust]
optional = true
version = "0.8.10"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.insta]
version = "1"

[features]
default = ["fnv", "xxh3", "xxh32", "xxh64"]
fnv = ["dep:fnv"]
xxh3 = ["dep:xxhash-rust", "xxhash-rust?/xxh3"]
xxh32 = ["dep:xxhash-rust", "xxhash-rust?/xxh32"]
xxh64 = ["dep:xxhash-rust", "xxhash-rust?/xxh64"]

[lib]
name = "noncrypto_digests"
path = "src/lib.rs"

[lints.clippy]
module_name_repetitions = "allow"
panic_in_result_fn = "warn"
todo = "warn"
unwrap_used = "warn"

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"

[package]
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography"]
description = "Implement Digest trait for non-cryptographic hashing functions like fnv and xxhash"
edition = "2021"
keywords = ["hash", "digest", "fnv", "xxhash", "xxh3"]
license = "MIT OR Apache-2.0"
name = "noncrypto-digests"
readme = "README.md"
repository = "https://github.com/nyurik/noncrypto-digests"
rust-version = "1.66"
version = "0.3.7"

[[test]]
name = "test"
path = "tests/test.rs"