[package]
edition = "2021"
rust-version = "1.89"
name = "topodb"
version = "0.0.3"
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"
[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 = "format_fixture"
path = "tests/format_fixture.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 = "text_search"
path = "tests/text_search.rs"
[[test]]
name = "traversal"
path = "tests/traversal.rs"
[[test]]
name = "vector_search"
path = "tests/vector_search.rs"
[[bench]]
name = "recall"
path = "benches/recall.rs"
harness = false
[dependencies.arc-swap]
version = "1"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.im]
version = "15"
features = ["serde"]
[dependencies.postcard]
version = "1"
features = ["alloc"]
[dependencies.redb]
version = "2"
[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.tempfile]
version = "3"