about summary refs log tree commit diff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-09-04 19:40:40 +0000
committerbors <bors@rust-lang.org>2025-09-04 19:40:40 +0000
commitaf00ff2ce62b6617ed19305ae39e135ac71d0b22 (patch)
treee993a956a2f459aacf2b33c29639bfc4f24ac1eb /Cargo.lock
parent0d6a806909f8e99ad59d3ca96dee012faf9a38e9 (diff)
parent80e18051cb9e4f4ed2e6c1927b598367788d5f2a (diff)
downloadrust-af00ff2ce62b6617ed19305ae39e135ac71d0b22.tar.gz
rust-af00ff2ce62b6617ed19305ae39e135ac71d0b22.zip
Auto merge of #145911 - notriddle:stringdex-tweak-3, r=GuillaumeGomez
rustdoc-search: yet another stringdex optimization attempt

This one's uses a different tactic. It shouldn't significantly increase the amount of downloaded index data, but still reduces the amount of disk usage.

This one works by changing the suffix-only node representation to omit some data that's needed for checking. Since those nodes make up the bulk of the tree, it reduces the data they store, but also requires validating the match by fetching the name itself (but the names list is pretty small, and when I tried it with wordnet "indexing" it was about the same).

r? `@GuillaumeGomez`
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 52f50481157..c4c96f1569b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5152,9 +5152,9 @@ dependencies = [
 
 [[package]]
 name = "stringdex"
-version = "0.0.1-alpha4"
+version = "0.0.1-alpha9"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2841fd43df5b1ff1b042e167068a1fe9b163dc93041eae56ab2296859013a9a0"
+checksum = "7081029913fd7d591c0112182aba8c98ae886b4f12edb208130496cd17dc3c15"
 dependencies = [
  "stacker",
 ]