This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
engram/crates/engram-core/Cargo.toml
T
Will Anderson 0a8312b263 init: Engram v0.1 — native memory substrate for accumulating intelligence
Memory is not stored and retrieved — it is activated and propagated.
Implements the spreading activation model with salience decay, typed edges,
four memory tiers, and flat cosine vector search over a sled embedded store.
2026-04-27 15:37:42 -05:00

15 lines
338 B
TOML

[package]
name = "engram-core"
version = "0.1.0"
edition = "2021"
description = "Engram — native memory substrate for accumulating intelligence"
license = "MIT"
[dependencies]
sled = "0.34"
uuid = { version = "1", features = ["v4", "serde"] }
serde = { version = "1", features = ["derive"] }
bincode = "1"
anyhow = "1"
thiserror = "1"