[package]
edition = "2021"
name = "langchainrust"
version = "0.2.1"
authors = ["atliliw"]
build = false
exclude = [
"/docs",
"/.github",
"/langchain",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A LangChain-inspired framework for building LLM applications in Rust. Supports OpenAI, Agents, Tools, Memory, Chains, and RAG."
homepage = "https://github.com/atliliw/langchainrust"
documentation = "https://docs.rs/langchainrust"
readme = "README.md"
keywords = [
"llm",
"langchain",
"ai",
"rust",
"openai",
]
categories = [
"algorithms",
"asynchronous",
"api-bindings",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/atliliw/langchainrust"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
experimental = []
qdrant-integration = ["qdrant-client"]
[lib]
name = "langchainrust"
path = "src/lib.rs"
[[test]]
name = "e2e_full_application"
path = "tests/e2e/full_application.rs"
[[test]]
name = "integration_agent"
path = "tests/integration/agent_test.rs"
[[test]]
name = "integration_agent_memory"
path = "tests/integration/agent_memory.rs"
[[test]]
name = "integration_agent_react"
path = "tests/integration/agent_react.rs"
[[test]]
name = "integration_chain_workflow"
path = "tests/integration/chain_workflow.rs"
[[test]]
name = "integration_chains"
path = "tests/integration/chains.rs"
[[test]]
name = "integration_embeddings"
path = "tests/integration/embeddings.rs"
[[test]]
name = "integration_llm_chat"
path = "tests/integration/llm_chat.rs"
[[test]]
name = "integration_rag"
path = "tests/integration/rag.rs"
[[test]]
name = "integration_rag_full"
path = "tests/integration/rag_full.rs"
[[test]]
name = "integration_rag_pipeline"
path = "tests/integration/rag_pipeline.rs"
[[test]]
name = "qdrant_tutorial"
path = "tests/qdrant_tutorial.rs"
required-features = ["qdrant-integration"]
[[test]]
name = "unit_loaders_csv"
path = "tests/unit/loaders_csv.rs"
[[test]]
name = "unit_memory"
path = "tests/unit/memory.rs"
[[test]]
name = "unit_prompts"
path = "tests/unit/prompts.rs"
[[test]]
name = "unit_retrieval"
path = "tests/unit/retrieval.rs"
[[test]]
name = "unit_schema"
path = "tests/unit/schema.rs"
[[test]]
name = "unit_tools"
path = "tests/unit/tools.rs"
[[test]]
name = "unit_vectorstores"
path = "tests/unit/vectorstores.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.csv]
version = "1.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.pdf-extract]
version = "0.7"
[dependencies.qdrant-client]
version = "1.7"
optional = true
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"stream",
]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.uuid]
version = "1.10"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio-test]
version = "0.4"