summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-04-04 20:48:19 -0400
committerGitHub <noreply@github.com>2021-04-04 20:48:19 -0400
commit405ce64a02fd55ebb383ce797910b2ec82dc97b4 (patch)
treed9d0fd65000fd21c14a45f05dac97dbf89108350 /Cargo.lock
parent476aaff45c64af95cbcf486bab5bfe53c8897b97 (diff)
refactor: Switch from fnv to fxhash (#444)
Switches to fxhash from fnv, which should be a bit faster.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock17
1 files changed, 10 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0142d3bc..89f072c3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -248,9 +248,9 @@ dependencies = [
"ctrlc",
"dirs-next",
"fern",
- "fnv",
"futures",
"futures-timer",
+ "fxhash",
"heim",
"indexmap",
"itertools",
@@ -552,12 +552,6 @@ dependencies = [
]
[[package]]
-name = "fnv"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
-[[package]]
name = "futures"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -674,6 +668,15 @@ dependencies = [
]
[[package]]
+name = "fxhash"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
+dependencies = [
+ "byteorder",
+]
+
+[[package]]
name = "getrandom"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"