Archived
78fc3a909a
- 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
27 lines
743 B
TOML
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"] }
|