rag 0.1.0

A Rust library and CLI for Retrieval-Augmented Generation
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 = "rag"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library and CLI for Retrieval-Augmented Generation"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/yingkitw/rag"

[features]
default = ["openai"]
ollama = []
openai = []

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

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

[[bin]]
name = "rag-mcp-server"
path = "src/mcp_server.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

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

[dependencies.clap]
version = "4.4"
features = ["derive"]

[dependencies.dashmap]
version = "5.5"

[dependencies.lopdf]
version = "0.32"

[dependencies.md5]
version = "0.7"

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

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.urlencoding]
version = "2.1"

[dependencies.uuid]
version = "1.6"
features = [
    "v4",
    "serde",
]

[dependencies.walkdir]
version = "2.5"

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