Archived
29 lines
671 B
TOML
29 lines
671 B
TOML
[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]
|