prehash 0.3.2

A crate for storing values with precomputed hashes.
Documentation
#
# Copyright (C) 2020 Nathan Sharp.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https:#mozilla.org/MPL/2.0/
#
# This Source Code Form is "Incompatible With Secondary Licenses", as defined
# by the Mozilla Public License, v. 2.0.
#

[package]
name = "prehash"
version = "0.3.2"
edition = "2018"

authors = ["Nathan Sharp <nwsharp@live.com>"]
license = "MPL-2.0-no-copyleft-exception"
readme = "README.md"
repository = "https://gitlab.com/nwsharp/prehash"

description = "A crate for storing values with precomputed hashes."
keywords = [ "hash", "memoize", "hashmap", "hashset", "precompute" ]
categories = [ "caching", "data-structures", "no-std" ]

[features]
default = [ "std" ]
std = []

[profile.release]
codegen-units = 1
lto = "fat"

[profile.bench]
codegen-units = 1
lto = "fat"

[badges]
maintenance = { status = "experimental" }