909c1577f1
- crates/ → engrams/ (Rust engrams live here) - bindings/ → receptors/ (cross-language access points into the graph) - Cargo.toml workspace paths updated
17 lines
430 B
TOML
17 lines
430 B
TOML
[package]
|
|
name = "engram-reasoning"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Graph-native inference engine for Engram — evidence chains, confidence propagation, causal reasoning"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
engram-core = { path = "../engram-core" }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|