909c1577f1
- crates/ → engrams/ (Rust engrams live here) - bindings/ → receptors/ (cross-language access points into the graph) - Cargo.toml workspace paths updated
25 lines
628 B
TOML
25 lines
628 B
TOML
[package]
|
|
name = "engram-sync"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Swarm memory sync layer for Engram — peer delta sync and distributed activation"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "engram_sync"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
engram-core = { path = "../engram-core" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
tokio = { version = "1", features = ["full", "test-util"] }
|