[package]
edition = "2021"
name = "mwhash"
version = "0.1.1"
authors = ["horizonwiki <horizondebug@gmail.com>"]
build = false
include = [
"src/",
"tests/",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple, fast, non-cryptographic hash function for Rust"
documentation = "https://docs.rs/mwhash"
readme = "README.md"
keywords = [
"hash",
"checksum",
"no_std",
"embedded",
"fast",
]
categories = [
"algorithms",
"no-std",
"embedded",
]
license = "Apache-2.0"
repository = "https://github.com/meow-land/mwhash"
[features]
default = []
std = []
[lib]
name = "mwhash"
path = "src/lib.rs"
[[test]]
name = "mhash_tests"
path = "tests/mhash_tests.rs"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"