[package]
edition = "2021"
rust-version = "1.75"
name = "mnemes"
version = "0.1.1"
authors = ["Josh Stevenson <j.stevenson.cs@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-device memory control plane — device/actor provenance, bitemporal lineage, semantic shard routing, idempotent operation envelopes, and replication for local-first AI agents"
homepage = "https://github.com/RecursiveIntell/mnemes"
documentation = "https://docs.rs/mnemes"
readme = "README.md"
keywords = [
"memory",
"multi-device",
"provenance",
"agent",
"semantic",
]
categories = [
"database",
"text-processing",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/RecursiveIntell/mnemes"
[features]
candle-local = ["semantic-memory/candle-embedder"]
default = [
"server",
"candle-local",
]
matryoshka = ["semantic-memory/matryoshka"]
server = [
"dep:axum",
"dep:tower",
"dep:tower-http",
]
[lib]
name = "mnemes"
path = "src/lib.rs"
[[bin]]
name = "mnemes-admin"
path = "src/bin/mnemes-admin.rs"
[[bin]]
name = "mnemes-server"
path = "src/bin/mnemes-server.rs"
[[test]]
name = "admin_cli"
path = "tests/admin_cli.rs"
[[test]]
name = "bitemporal_lineage"
path = "tests/bitemporal_lineage.rs"
[[test]]
name = "device_shards"
path = "tests/device_shards.rs"
[[test]]
name = "provenance_edges"
path = "tests/provenance_edges.rs"
[[test]]
name = "replication_protocol"
path = "tests/replication_protocol.rs"
[[test]]
name = "replication_sync"
path = "tests/replication_sync.rs"
[[test]]
name = "server"
path = "tests/server.rs"
[dependencies.axum]
version = "0.7"
optional = true
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4.3"
[dependencies.hmac]
version = "0.12"
[dependencies.rand]
version = "0.8"
[dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"blob",
]
[dependencies.schemars]
version = "0.8"
[dependencies.semantic-memory]
version = "0.5"
features = ["usearch-backend"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2.6.1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
"sync",
"net",
]
[dependencies.tower]
version = "0.5"
features = [
"limit",
"timeout",
]
optional = true
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"limit",
"timeout",
]
optional = true
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"