atheneum 0.1.1

Agent coordination graph database - episodic and semantic memory for multi-agent workflows
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "atheneum"
version = "0.1.1"
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",
    "llm",
]
categories = [
    "database-implementations",
    "data-structures",
    "text-processing",
]
license = "GPL-3.0-only"
repository = "https://github.com/oldnordic/atheneum"

[features]
async = [
    "tokio",
    "tracing-subscriber",
]
default = []
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 = "code_bridge_tests"
path = "tests/code_bridge_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 = "ingest_test"
path = "tests/ingest_test.rs"

[[test]]
name = "ontology_tests"
path = "tests/ontology_tests.rs"

[[test]]
name = "planning_tests"
path = "tests/planning_tests.rs"

[[test]]
name = "project_scoping_tests"
path = "tests/project_scoping_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.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.0.5"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.44"
features = ["full"]
optional = true

[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.uuid]
version = "1"
features = ["v7"]

[dev-dependencies.tempfile]
version = "3.19"

[dev-dependencies.walkdir]
version = "2.5"