[package]
edition = "2021"
rust-version = "1.75"
name = "ainl-memory"
version = "0.1.13"
authors = ["Steven Hooley"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AINL graph-memory substrate - agent memory as execution graph"
homepage = "https://github.com/sbhooley/armaraos"
documentation = "https://docs.rs/ainl-memory"
readme = "README.md"
keywords = [
"ai",
"agent",
"memory",
"graph",
"ainl",
]
categories = [
"development-tools",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/sbhooley/armaraos"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "ainl_memory"
path = "src/lib.rs"
[[test]]
name = "graph_integration"
path = "tests/graph_integration.rs"
[[test]]
name = "test_edge_migration"
path = "tests/test_edge_migration.rs"
[[test]]
name = "test_integrity"
path = "tests/test_integrity.rs"
[[test]]
name = "test_query"
path = "tests/test_query.rs"
[[test]]
name = "test_runtime_state"
path = "tests/test_runtime_state.rs"
[[test]]
name = "test_snapshot"
path = "tests/test_snapshot.rs"
[[test]]
name = "test_validate"
path = "tests/test_validate.rs"
[dependencies.ainl-contracts]
version = "0.1.4"
[dependencies.ainl-trajectory]
version = "0.1.2"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"serde_json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"serde",
]
[dev-dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"serde_json",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"