diff options
| author | Mark Wotton <mwotton@gmail.com> | 2021-09-09 17:46:46 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-09 11:46:46 +0100 |
| commit | 2024884f49334e7eaf64adc425da77b773204b42 (patch) | |
| tree | f5ed33336930230d873f4a06458fb08d6c45cb70 /Cargo.lock | |
| parent | Update README.md (diff) | |
| download | atuin-2024884f49334e7eaf64adc425da77b773204b42.zip | |
Reordered fuzzy search (#179)
* add test demonstrating problem
* add a reordered fuzzy-search mode that presents shorter matches first,
rather than using strict chronological ordering.
* fix warnings, refactor interface to minspan slightly
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -138,6 +138,7 @@ dependencies = [ "indicatif", "itertools", "log", + "minspan", "parse_duration", "rand 0.8.3", "reqwest", @@ -1169,6 +1170,12 @@ dependencies = [ ] [[package]] +name = "minspan" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1269a17ac308ae0b906ec1b0ff8062fd0c82f18cc2956faa367302ec3380f4e8" + +[[package]] name = "mio" version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" |
