Files
will.anderson 78fc3a909a Wire Axon /axon/message to NeuronRuntime dispatch
- axon.rs: replace stub AxonHandler with live NeuronRuntime dispatch;
  tool calls now route through Engram VM when modules are loaded
- state.rs: load .el modules from NEURON_LANG_DIR (default ~/.neuron/lang);
  falls back to empty dir gracefully when not present
- Cargo.toml: add engram-core dependency for EngramDb
2026-04-28 13:47:09 -05:00

31 lines
749 B
TOML

[package]
name = "neuron-api"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "neuron-api"
path = "src/main.rs"
[dependencies]
neuron-domain = { path = "../neuron-domain" }
neuron-store = { path = "../neuron-store" }
neuron-protocol = { path = "../neuron-protocol" }
neuron-runtime = { path = "../neuron-runtime" }
chrono = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
tokio = { workspace = true }
axum = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
thiserror = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
futures-util = "0.3"
tokio-stream = "0.1"
async-stream = "0.3"
[dev-dependencies]