feat: neuron-rs — Rust runtime, Engram-backed, Axon protocol

This commit is contained in:
2026-04-27 18:37:01 -05:00
commit 745278c902
33 changed files with 2375 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
[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" }
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]