[package]
edition = "2021"
name = "memnite"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event-sourced memory engine for AI agents: append-only log, SQLite projections, staleness, conflict graph. CLI binary."
readme = false
keywords = [
"memory",
"event-sourcing",
"ai-agents",
"mcp",
"cli",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Razielini/memnite"
[lib]
name = "memnite_cli"
path = "src/lib.rs"
[[bin]]
name = "memnite"
path = "src/main.rs"
[[test]]
name = "app_tests"
path = "tests/app_tests.rs"
[[test]]
name = "cli_binary_tests"
path = "tests/cli_binary_tests.rs"
[[test]]
name = "doctor_clean_test"
path = "tests/doctor_clean_test.rs"
[[test]]
name = "doctor_conflicts_tests"
path = "tests/doctor_conflicts_tests.rs"
[[test]]
name = "fts_tests"
path = "tests/fts_tests.rs"
[[test]]
name = "ingest_crumbex_tests"
path = "tests/ingest_crumbex_tests.rs"
[[test]]
name = "ingest_tests"
path = "tests/ingest_tests.rs"
[[test]]
name = "project_canonical_tests"
path = "tests/project_canonical_tests.rs"
[[test]]
name = "project_resolve_tests"
path = "tests/project_resolve_tests.rs"
[[test]]
name = "protocol_tests"
path = "tests/protocol_tests.rs"
[[test]]
name = "sync_tests"
path = "tests/sync_tests.rs"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.memnite-core]
version = "0.2.1"
[dependencies.memnite-ingest]
version = "0.2.1"
[dependencies.memnite-judge]
version = "0.2.1"
[dependencies.memnite-stale]
version = "0.2.1"
[dependencies.memnite-store]
version = "0.2.1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"