feat: Engram sync layer — swarm memory protocol, peer delta sync, distributed activation

This commit is contained in:
Will Anderson
2026-04-27 17:18:51 -05:00
parent 2454c83e82
commit 6601761cd9
17 changed files with 6637 additions and 11 deletions
+30
View File
@@ -0,0 +1,30 @@
[package]
name = "engram-server"
version = "0.1.0"
edition = "2021"
description = "HTTP server for Engram — REST API + sync endpoints + swarm activation"
license = "MIT"
[[bin]]
name = "engram-server"
path = "src/main.rs"
[dependencies]
engram-core = { path = "../engram-core" }
engram-sync = { path = "../engram-sync" }
axum = { version = "0.7", features = ["json"] }
tokio = { version = "1", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
anyhow = "1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
axum-test = "14"
tokio = { version = "1", features = ["full"] }
tempfile = "3"