[package] name = "searchy" version = "0.5.0" edition = "2021" authors = ["Bernard van Gastel "] homepage = "https://www.bitpowder.com/libs/indigo/" repository = "https://gitlab.com/bitpowder/indigo-ng" license = "Apache-2.0" keywords = ["search", "in-memory"] categories = ["algorithms", "data-structures", "text-processing"] description = "Search index (in-memory), that can be constructed and searched using a bag of words model, with cosine similarity scoring based on tf-idf. Supports multiple search terms, permissions, text suggestions (for spelling errors), and evaluating common arithmetic expressions directly to values. Tries to reduce memory footprint." [dependencies] expry = { version = "^0.4", path = "../expry" } smol_str = "^0.2"