diff --git a/Cargo.toml b/Cargo.toml index 7a18a25..96fc787 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "Small byte-sized generic key-value map type" keywords = ["map", "table", "small", "key", "value"] repository = "https://github.com/notflan/smallmap" homepage= "https://git.flanchan.moe/flanchan/smallmap" -version = "1.3.1" +version = "1.3.2" authors = ["Avril "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index d95c907..d46685d 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Performance can greately outpace hash-based by an order of magnitude or more in * You have small keys * Your map is not at risk of Denial of Service attacks. -* Your keys will have a lot of collisions +* Your keys are not expected to have a lot of collisions when represented as `u8`. ### Don't use if