memory-indexer 0.3.1

An in-memory full-text fuzzy search indexer.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "memory-indexer"
version = "0.3.1"
authors = ["DarkSky <darksky2048@gmail.com>"]
build = false
include = [
    "src/**/*",
    "benches/**/*",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An in-memory full-text fuzzy search indexer."
homepage = "https://github.com/darkskygit/memory-indexer"
readme = "README.md"
keywords = [
    "search",
    "index",
    "in-memory",
    "full-text",
    "fuzzy",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/darkskygit/memory-indexer"

[lib]
name = "memory_indexer"
path = "src/lib.rs"

[[bench]]
name = "indexer"
path = "benches/indexer.rs"
harness = false

[dependencies.jieba-rs]
version = "0.8"

[dependencies.once_cell]
version = "1"

[dependencies.pinyin]
version = "0.11"
features = ["heteronym"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.smol_str]
version = "0.3"
features = ["serde"]

[dependencies.strsim]
version = "0.11"

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.unicode-script]
version = "0.5"

[dev-dependencies.bincode]
version = "2.0.1"
features = ["serde"]

[dev-dependencies.criterion2]
version = "3"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.zstd]
version = "0.13"