[package]
edition = "2021"
name = "totalreclaw-memory"
version = "2.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TotalReclaw memory backend — E2EE crypto, LSH, embeddings, reranker (Memory Taxonomy v1)"
homepage = "https://totalreclaw.xyz"
readme = "README.md"
keywords = [
"e2ee",
"memory",
"ai",
"embeddings",
"lsh",
]
categories = [
"cryptography",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/p-diogo/totalreclaw"
[features]
default = []
local-embeddings = [
"dep:ort",
"dep:tokenizers",
]
[lib]
name = "totalreclaw_memory"
path = "src/lib.rs"
[[test]]
name = "e2e_spec_validation"
path = "tests/e2e_spec_validation.rs"
[[test]]
name = "native_userop_e2e"
path = "tests/native_userop_e2e.rs"
[[test]]
name = "spec_compliance"
path = "tests/spec_compliance.rs"
[[test]]
name = "three_way_cross_client"
path = "tests/three_way_cross_client.rs"
[[test]]
name = "v1_taxonomy"
path = "tests/v1_taxonomy.rs"
[[test]]
name = "wallet_parity"
path = "tests/wallet_parity.rs"
[dependencies.base64]
version = "0.22"
[dependencies.bip39]
version = "2"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.k256]
version = "0.13"
features = ["ecdsa"]
[dependencies.ort]
version = "2.0.0-rc.12"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tiny-keccak]
version = "2"
features = ["keccak"]
[dependencies.tokenizers]
version = "0.21"
optional = true
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
]
[dependencies.totalreclaw-core]
version = "2.0"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]