[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]