b77f537dc6
- neuron-runtime, neuron-store, neuron-migrate: fix path deps (products/engram/ → foundation/engram/engrams/, products/el/ → foundation/el/engrams/) - neuron-rs workspace: fix axon-events/axon-protocol paths (../../../platform/ → ../../platform/, paths were off by one level) - neuron-lang/compiler/ removed (el self-hosting compiler now lives in foundation/el/el-compiler/)
30 lines
940 B
TOML
30 lines
940 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/neuron-domain",
|
|
"crates/neuron-store",
|
|
"crates/neuron-api",
|
|
"crates/neuron-protocol",
|
|
"crates/neuron-runtime",
|
|
"crates/neuron-migrate",
|
|
"crates/neuron-cli",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
# Platform-level Axon protocol crates (canonical source of truth)
|
|
axon-events = { path = "../../platform/protocols/axon/crates/axon-events" }
|
|
axon-protocol = { path = "../../platform/protocols/axon/crates/axon-protocol" }
|
|
|
|
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"] }
|