aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-07-14 00:22:39 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2023-07-14 00:22:39 +0200
commit149e0b6ae9871515be21f23b492f5ef7355e2ca4 (patch)
treed5b1bf8281a3a1cf181d5c921a53dfd99fd8b7a9 /Cargo.lock
parent0723ea6b6bb6832b11582eeb8a330d2bdb6077b5 (diff)
make fast using hash instead of dictionary
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f7d1aa0..6cbc2dd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -202,6 +202,15 @@ dependencies = [
]
[[package]]
+name = "bincode"
+version = "1.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
+dependencies = [
+ "serde",
+]
+
+[[package]]
name = "bit-set"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1348,6 +1357,7 @@ dependencies = [
name = "indexsearch"
version = "0.1.0"
dependencies = [
+ "bincode",
"dotext",
"iced",
"lazy_static",