[package]
edition = "2021"
rust-version = "1.88"
name = "sqlite-graphrag"
version = "1.0.4"
build = false
exclude = [
".serena/",
".claude/",
".vscode/",
".idea/",
"logs/",
"memory/",
"docs_rules/",
"/CLAUDE.md",
"/AGENTS.md",
"/MEMORY.md",
"ralph-loop.local.md",
"*.profraw",
"*.profdata",
"*.log",
"graphrag.sqlite",
"graphrag.sqlite-shm",
"graphrag.sqlite-wal",
"*.sqlite",
"*.sqlite-shm",
"*.sqlite-wal",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "sqlite-graphrag"
description = "Local GraphRAG memory for LLMs in a single SQLite file"
homepage = "https://docs.rs/sqlite-graphrag"
documentation = "https://docs.rs/sqlite-graphrag"
readme = "README.md"
keywords = [
"graphrag",
"sqlite",
"llm",
"embeddings",
"memory",
]
categories = [
"command-line-utilities",
"database",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/daniloaguiarbr/sqlite-graphrag"
[features]
slow-tests = []
[lib]
name = "sqlite_graphrag"
path = "src/lib.rs"
[[bin]]
name = "sqlite-graphrag"
path = "src/main.rs"
[[test]]
name = "concurrency_hardened"
path = "tests/concurrency_hardened.rs"
[[test]]
name = "concurrency_limit_integration"
path = "tests/concurrency_limit_integration.rs"
[[test]]
name = "cookbook_recipes"
path = "tests/cookbook_recipes.rs"
[[test]]
name = "doc_contract_integration"
path = "tests/doc_contract_integration.rs"
[[test]]
name = "exit_codes_integration"
path = "tests/exit_codes_integration.rs"
[[test]]
name = "i18n_bilingual_integration"
path = "tests/i18n_bilingual_integration.rs"
[[test]]
name = "installed_binary_smoke"
path = "tests/installed_binary_smoke.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lock_integration"
path = "tests/lock_integration.rs"
[[test]]
name = "loom_lock_slots"
path = "tests/loom_lock_slots.rs"
[[test]]
name = "prd_compliance"
path = "tests/prd_compliance.rs"
[[test]]
name = "property_based"
path = "tests/property_based.rs"
[[test]]
name = "recall_integration"
path = "tests/recall_integration.rs"
[[test]]
name = "regression_v2_0_4"
path = "tests/regression_v2_0_4.rs"
[[test]]
name = "schema_contract_strict"
path = "tests/schema_contract_strict.rs"
[[test]]
name = "schema_migration_integration"
path = "tests/schema_migration_integration.rs"
[[test]]
name = "security_hardening"
path = "tests/security_hardening.rs"
[[test]]
name = "signal_handling_integration"
path = "tests/signal_handling_integration.rs"
[[test]]
name = "v2_breaking_integration"
path = "tests/v2_breaking_integration.rs"
[[test]]
name = "vacuum_integration"
path = "tests/vacuum_integration.rs"
[[bench]]
name = "cli_benchmarks"
path = "benches/cli_benchmarks.rs"
harness = false
[[bench]]
name = "regression_baseline"
path = "benches/regression_baseline.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.chrono-tz]
version = "0.10"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.constant_time_eq]
version = "=0.4.2"
[dependencies.ctrlc]
version = "3.4"
features = ["termination"]
[dependencies.directories]
version = "5"
[dependencies.fastembed]
version = "5"
[dependencies.fs4]
version = "0.9"
features = ["sync"]
[dependencies.interprocess]
version = "2"
[dependencies.notify]
version = "6"
[dependencies.refinery]
version = "0.8"
features = ["rusqlite"]
[dependencies.regex]
version = "1"
[dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"blob",
"load_extension",
"functions",
"trace",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.slug]
version = "0.1"
[dependencies.sqlite-vec]
version = "0.1.6"
[dependencies.sysinfo]
version = "0.32"
features = ["system"]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.zerocopy]
version = "0.7"
features = ["derive"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.jsonschema]
version = "0.29"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.mockall]
version = "0.13"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
features = ["std"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"
[target."cfg(loom)".dev-dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true