Use hashbrown hashmap directly for faster hash (ahash)

This commit is contained in:
Joakim Frostegård 2020-04-12 13:19:07 +02:00
parent eaa42a26b7
commit e61c961126
5 changed files with 16 additions and 4 deletions

11
Cargo.lock generated
View file

@ -31,6 +31,7 @@ dependencies = [
"bittorrent_udp",
"cli_helpers",
"crossbeam-channel",
"hashbrown",
"histogram",
"indexmap",
"mimalloc",
@ -317,6 +318,16 @@ dependencies = [
"syn",
]
[[package]]
name = "hashbrown"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479e9d9a1a3f8c489868a935b557ab5710e3e223836da2ecd52901d88935cb56"
dependencies = [
"ahash",
"autocfg",
]
[[package]]
name = "hermit-abi"
version = "0.1.10"