diff --git a/Cargo.toml b/Cargo.toml index 922371b..0695900 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,13 +3,14 @@ name = "hashbrown" version = "0.12.0" authors = ["Amanieu d'Antras "] 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 diff --git a/README.md b/README.md index 0b29cb5..2eddcf3 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -hashbrown = "0.11" +hashbrown = "0.12" ``` Then: