[package]
edition = "2021"
rust-version = "1.75"
name = "datacules-agentdb"
version = "0.4.5"
authors = ["Datacules LLC <hello@datacules.com>"]
build = false
exclude = [
"python/",
"nodejs/",
"target/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Single-file embedded database for AI agents. SQL + Vector Search + Full-Text Search + Hybrid Queries + Memory Graphs."
homepage = "https://github.com/hvrcharon1/agentdb"
readme = "README.md"
keywords = [
"database",
"vector-search",
"ai",
"agents",
"embedded",
]
categories = [
"database",
"embedded",
"science",
"data-structures",
]
license = "Unlicense"
repository = "https://github.com/hvrcharon1/agentdb"
[features]
async = ["tokio"]
default = []
ffi = []
python = [
"pyo3",
"ffi",
]
wasm = ["wasm-bindgen"]
[lib]
name = "agentdb"
crate-type = ["rlib"]
path = "src/lib.rs"
[[bin]]
name = "agentdb"
path = "src/bin/agentdb.rs"
required-features = []
[[example]]
name = "agent_memory"
path = "examples/agent_memory.rs"
[[example]]
name = "graph_traverse"
path = "examples/graph_traverse.rs"
[[example]]
name = "rag_pipeline"
path = "examples/rag_pipeline.rs"
[[example]]
name = "v020_query_power"
path = "examples/v020_query_power.rs"
[[test]]
name = "test_cli"
path = "tests/test_cli.rs"
[[test]]
name = "test_ffi"
path = "tests/test_ffi.rs"
[[test]]
name = "test_memory_graph"
path = "tests/test_memory_graph.rs"
[[test]]
name = "test_relational"
path = "tests/test_relational.rs"
[[test]]
name = "test_v020"
path = "tests/test_v020.rs"
[[test]]
name = "test_vectors"
path = "tests/test_vectors.rs"
[[bench]]
name = "graph_traverse"
path = "benches/graph_traverse.rs"
harness = false
[[bench]]
name = "vector_search"
path = "benches/vector_search.rs"
harness = false
[dependencies.bincode]
version = "1"
[dependencies.clap]
version = "~4.5"
features = ["derive"]
[dependencies.pyo3]
version = "0.21"
features = ["extension-module"]
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
optional = true
[dependencies.uuid]
version = "~1.20"
features = ["v4"]
[dependencies.wasm-bindgen]
version = "~0.2.117"
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.release-dbg]
debug = 1
inherits = "release"
strip = false