[package]
edition = "2021"
name = "graphrag"
version = "0.1.1"
authors = ["GraphRAG-RS Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphRAG - Knowledge Graph RAG: meta-crate that bundles graphrag-core and graphrag-cli"
homepage = "https://github.com/automataIA/graphrag-rs"
readme = "README.md"
keywords = [
"graphrag",
"knowledge-graph",
"rag",
"llm",
"ai",
]
categories = [
"command-line-utilities",
"algorithms",
"science",
"text-processing",
]
license = "MIT"
repository = "https://github.com/automataIA/graphrag-rs"
[lib]
name = "graphrag"
path = "src/lib.rs"
[[bin]]
name = "graphrag"
path = "src/main.rs"
[dependencies.color-eyre]
version = "0.6"
[dependencies.graphrag-cli]
version = "0.1.1"
[dependencies.graphrag-core]
version = "0.1.1"
features = [
"async",
"pagerank",
"lightrag",
"leiden",
"caching",
"parallel-processing",
"ollama",
"rograg",
"cross-encoder",
"incremental",
"json5-support",
"vector-hnsw",
]
[dependencies.tokio]
version = "1.0"
features = ["full"]