vectoria-core 0.1.2

Embedded hybrid search engine core — BM25 + vector + behavioral signals
# 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 = "vectoria-core"
version = "0.1.2"
authors = ["Gleicon Moraes <gleicon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded hybrid search engine core — BM25 + vector + behavioral signals"
homepage = "https://github.com/gleicon/vectoria"
readme = "README.md"
keywords = [
    "search",
    "vector",
    "bm25",
    "hybrid",
    "ecommerce",
]
categories = [
    "database",
    "algorithms",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/gleicon/vectoria"
resolver = "2"

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.bm25]
version = "2"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.edgestore]
version = "1.0"

[dependencies.fastembed]
version = "4"

[dependencies.foyer]
version = "0.22"

[dependencies.reqwest]
version = "0.12"
features = ["json"]

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1"

[dependencies.symspell]
version = "0.5"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = ["v4"]

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

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "rt-multi-thread",
    "macros",
]