gramdex 0.4.1

K-gram indexing for approximate string matching
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 = "2021"
rust-version = "1.80"
name = "gramdex"
version = "0.4.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "K-gram indexing for approximate string matching"
homepage = "https://github.com/arclabs561/gramdex"
documentation = "https://docs.rs/gramdex"
readme = "README.md"
keywords = [
    "string",
    "similarity",
    "ngram",
    "trigram",
    "search",
]
categories = [
    "text-processing",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/gramdex"

[features]
serde = ["dep:serde"]
store = [
    "serde",
    "dep:segstore",
    "dep:durability",
    "dep:postcard",
]

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

[[example]]
name = "candidate_verify_rank"
path = "examples/candidate_verify_rank.rs"

[[example]]
name = "store_reopen_diagnostics"
path = "examples/store_reopen_diagnostics.rs"
required-features = ["store"]

[[example]]
name = "updatable_store"
path = "examples/updatable_store.rs"
required-features = ["store"]

[[test]]
name = "approx_match_ranking"
path = "tests/approx_match_ranking.rs"

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

[dependencies.durability]
version = "0.7.2"
optional = true

[dependencies.postcard]
version = "1.0"
features = [
    "use-crc",
    "alloc",
    "use-std",
]
optional = true

[dependencies.segstore]
version = "0.5"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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