mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
Use hashbrown hashmap directly for faster hash (ahash)
This commit is contained in:
parent
eaa42a26b7
commit
e61c961126
5 changed files with 16 additions and 4 deletions
11
Cargo.lock
generated
11
Cargo.lock
generated
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue