Documentation fixes

Update crunchy to latest
This commit is contained in:
David Palm 2018-11-21 11:22:36 +01:00
parent 048951f0c3
commit 86f7410e10
2 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "plain_hasher"
description = "Hasher for 32-bit keys."
version = "0.2.0"
description = "Hasher for 32-byte keys."
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
keywords = ["hash", "hasher"]
@ -9,8 +9,8 @@ homepage = "https://github.com/paritytech/parity-common"
categories = [ "no-std"]
[dependencies]
crunchy = "0.1.6"
crunchy = "0.2.1"
[features]
default = ["std"]
std = []
std = []

View File

@ -1,5 +1,5 @@
# Specialized Hasher for 32-bit keys
# Specialized Hasher for 32-byte keys
Provides `PlainHasher`, a specialized `core::hash::Hasher` that takes just 8 bytes of the provided value and may only be used for keys which are 32 bytes.
The crate is `no_std`-compatible.
The crate is `no_std`-compatible.