semstore 0.1.0

Local semantic search for Rust applications — store text, search by meaning, no cloud required
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.88"
name = "semstore"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local semantic search for Rust applications — store text, search by meaning, no cloud required"
homepage = "https://github.com/rustkit-ai/semstore"
documentation = "https://docs.rs/semstore"
readme = "README.md"
keywords = [
    "semantic-search",
    "embeddings",
    "rag",
    "vector-search",
    "llm",
]
categories = [
    "database",
    "text-processing",
    "science",
]
license = "MIT"
repository = "https://github.com/rustkit-ai/semstore"

[features]
bundled-sqlite = ["rusqlite/bundled"]
default = [
    "default-embedder",
    "bundled-sqlite",
]
default-embedder = [
    "dep:fastembed",
    "dep:once_cell",
]

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

[[bin]]
name = "semstore"
path = "src/main.rs"

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

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

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

[dependencies.fastembed]
version = "4"
optional = true

[dependencies.once_cell]
version = "1"
optional = true

[dependencies.rusqlite]
version = "0.31"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dependencies.usearch]
version = "2"

[dev-dependencies.serde_json]
version = "1"

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