This repository has been archived on 2026-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
neuron-rs/Cargo.toml
T
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

27 lines
743 B
TOML

[workspace]
resolver = "2"
members = [
"crates/neuron-domain",
"crates/neuron-store",
"crates/neuron-api",
"crates/neuron-protocol",
"crates/axon-events",
"crates/neuron-runtime",
"crates/neuron-migrate",
"crates/neuron-cli",
]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1"
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }