[package]
edition = "2021"
rust-version = "1.82"
name = "atheneum"
version = "0.5.0"
authors = ["oldnordic"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent coordination graph database - episodic and semantic memory for multi-agent workflows"
homepage = "https://github.com/oldnordic/atheneum"
documentation = "https://github.com/oldnordic/atheneum/blob/master/MANUAL.md"
readme = "README.md"
keywords = [
"graph",
"sqlite",
"agent",
"knowledge-base",
"coordination",
]
categories = [
"database-implementations",
"data-structures",
"text-processing",
]
license = "GPL-3.0-only"
repository = "https://github.com/oldnordic/atheneum"
[features]
async = [
"tokio",
"tracing-subscriber",
]
default = ["semantic-search"]
neural-embed = ["dep:ureq"]
semantic-search = []
web-ui = [
"dep:axum",
"dep:tower-http",
"dep:askama",
]
[lib]
name = "atheneum"
path = "src/lib.rs"
[[bin]]
name = "atheneum"
path = "src/main.rs"
[[example]]
name = "batch_ingest_wiki"
path = "examples/batch_ingest_wiki.rs"
[[example]]
name = "ingest_wiki"
path = "examples/ingest_wiki.rs"
[[example]]
name = "query_graph"
path = "examples/query_graph.rs"
[[example]]
name = "query_graph_persistent"
path = "examples/query_graph_persistent.rs"
[[test]]
name = "audit_trail_tests"
path = "tests/audit_trail_tests.rs"
[[test]]
name = "bridge_api_tests"
path = "tests/bridge_api_tests.rs"
[[test]]
name = "claude_transcript_tests"
path = "tests/claude_transcript_tests.rs"
[[test]]
name = "code_bridge_tests"
path = "tests/code_bridge_tests.rs"
[[test]]
name = "evidence_relation_tests"
path = "tests/evidence_relation_tests.rs"
[[test]]
name = "graph_navigation_tests"
path = "tests/graph_navigation_tests.rs"
[[test]]
name = "graph_operations_test"
path = "tests/graph_operations_test.rs"
[[test]]
name = "hopgraph_tests"
path = "tests/hopgraph_tests.rs"
[[test]]
name = "ingest_test"
path = "tests/ingest_test.rs"
[[test]]
name = "memory_tests"
path = "tests/memory_tests.rs"
[[test]]
name = "ontology_tests"
path = "tests/ontology_tests.rs"
[[test]]
name = "pagination_tests"
path = "tests/pagination_tests.rs"
[[test]]
name = "planning_tests"
path = "tests/planning_tests.rs"
[[test]]
name = "project_scoping_tests"
path = "tests/project_scoping_tests.rs"
[[test]]
name = "runtime_cache_tests"
path = "tests/runtime_cache_tests.rs"
[[test]]
name = "semantic_search_tests"
path = "tests/semantic_search_tests.rs"
[[test]]
name = "sql_separation_knowledge_tests"
path = "tests/sql_separation_knowledge_tests.rs"
[[test]]
name = "sql_separation_planning_tests"
path = "tests/sql_separation_planning_tests.rs"
[[test]]
name = "sql_separation_tests"
path = "tests/sql_separation_tests.rs"
[[test]]
name = "watchers_tests"
path = "tests/watchers_tests.rs"
[[test]]
name = "wiki_query_tests"
path = "tests/wiki_query_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.askama]
version = "0.13"
optional = true
[dependencies.axum]
version = "0.8"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1.11"
[dependencies.rusqlite]
version = "0.31"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlitegraph]
version = "3.2.5"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.44"
features = ["full"]
optional = true
[dependencies.toml]
version = "0.8"
[dependencies.tower-http]
version = "0.6"
features = [
"fs",
"cors",
]
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true
[dependencies.ureq]
version = "2"
features = ["json"]
optional = true
default-features = false
[dependencies.uuid]
version = "1"
features = ["v7"]
[dev-dependencies.tempfile]
version = "3.19"
[dev-dependencies.walkdir]
version = "2.5"