embedsearch 0.1.0

Lightweight embeddable full-text search engine in pure Rust
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 = "embedsearch"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight embeddable full-text search engine in pure Rust"
readme = "README.md"
keywords = [
    "search",
    "search-engine",
    "index",
    "bm25",
    "text",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/hkathed/embedsearch"
resolver = "2"

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.bincode]
version = "1.3"

[dependencies.rayon]
version = "1"

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

[dependencies.serde_json]
version = "1"