Readme and Cargo.toml updates

This commit is contained in:
Alex Touchet 2022-02-24 22:46:13 -08:00
parent f3a242fb48
commit 1fbb17b2d5
2 changed files with 4 additions and 3 deletions

View File

@ -3,13 +3,14 @@ name = "hashbrown"
version = "0.12.0"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "A Rust port of Google's SwissTable hash map"
license = "Apache-2.0/MIT"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/hashbrown"
readme = "README.md"
keywords = ["hash", "no_std", "hashmap", "swisstable"]
categories = ["data-structures", "no-std"]
exclude = [".github", "bors.toml", "/ci/*"]
exclude = [".github", "/ci/*"]
edition = "2021"
rust-version = "1.56.1"
[dependencies]
# For the default hasher

View File

@ -85,7 +85,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
hashbrown = "0.11"
hashbrown = "0.12"
```
Then: