[package]
edition = "2021"
rust-version = "1.89"
name = "topodb"
version = "0.0.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded, local-first memory engine for AI agents: temporal property graph + scoped recall."
readme = "README.md"
keywords = [
"graph",
"embedded",
"database",
"temporal",
"agent",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TopoDB/TopoDB"
[package.metadata.dist]
dist = false
[lib]
name = "topodb"
path = "src/lib.rs"
[[test]]
name = "change_feed"
path = "tests/change_feed.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "counters"
path = "tests/counters.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "edge_scope"
path = "tests/edge_scope.rs"
[[test]]
name = "edges_from"
path = "tests/edges_from.rs"
[[test]]
name = "format_fixture"
path = "tests/format_fixture.rs"
[[test]]
name = "generate_v2_workload"
path = "tests/generate_v2_workload.rs"
[[test]]
name = "generate_v3_workload"
path = "tests/generate_v3_workload.rs"
[[test]]
name = "hybrid_recall"
path = "tests/hybrid_recall.rs"
[[test]]
name = "open_stored"
path = "tests/open_stored.rs"
[[test]]
name = "prop_index"
path = "tests/prop_index.rs"
[[test]]
name = "recall"
path = "tests/recall.rs"
[[test]]
name = "recall_quality"
path = "tests/recall_quality.rs"
[[test]]
name = "size_report"
path = "tests/size_report.rs"
[[test]]
name = "text_search"
path = "tests/text_search.rs"
[[test]]
name = "traversal"
path = "tests/traversal.rs"
[[test]]
name = "v2_workload_fixture"
path = "tests/v2_workload_fixture.rs"
[[test]]
name = "v3_workload_fixture"
path = "tests/v3_workload_fixture.rs"
[[test]]
name = "vector_search"
path = "tests/vector_search.rs"
[[bench]]
name = "recall"
path = "benches/recall.rs"
harness = false
[[bench]]
name = "storage"
path = "benches/storage.rs"
harness = false
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.lz4_flex]
version = "0.11"
[dependencies.postcard]
version = "1"
features = ["alloc"]
[dependencies.redb]
version = "2"
[dependencies.rust-stemmers]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.smol_str]
version = "0.3"
features = ["serde"]
[dependencies.thiserror]
version = "2"
[dependencies.ulid]
version = "1"
features = ["serde"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"