synaptic-retrieval 0.1.0

Document retrieval: BM25, MultiQuery, Ensemble, Compression, SelfQuery, ParentDocument
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.78"
name = "synaptic-retrieval"
version = "0.1.0"
authors = ["Synapse Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Document retrieval: BM25, MultiQuery, Ensemble, Compression, SelfQuery, ParentDocument"
readme = false
license = "MIT"
repository = "https://github.com/dnw3/synaptic"

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

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

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

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

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

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

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

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

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

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

[dependencies.serde_json]
version = "1.0"

[dependencies.synaptic-core]
version = "0.1.0"

[dependencies.synaptic-embeddings]
version = "0.1.0"

[dependencies.tokio]
version = "1.41"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
    "time",
    "fs",
]

[dev-dependencies.synaptic-models]
version = "0.1.0"

[dev-dependencies.tokio]
version = "1.41"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
    "time",
    "fs",
]