2023-11-07 17:38:49 +00:00
|
|
|
[package]
|
|
|
|
name = "explorer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806", features = ["derive"] }
|
|
|
|
nomos-log = { path = "../../nomos-services/log" }
|
|
|
|
nomos-storage = { path = "../../nomos-services/storage", features = ["sled"] }
|
2023-11-10 11:58:20 +00:00
|
|
|
nomos-api = { path = "../../nomos-services/api" }
|
|
|
|
nomos-node = { path = "../nomos-node" }
|
|
|
|
nomos-core = { path = "../../nomos-core" }
|
2024-01-31 08:30:48 +00:00
|
|
|
full-replication = { path = "../../nomos-da/full-replication" }
|
2023-11-10 11:58:20 +00:00
|
|
|
serde = "1.0"
|
|
|
|
tracing = "0.1"
|
|
|
|
async-trait = "0.1.73"
|
|
|
|
axum = "0.6"
|
|
|
|
hyper = "0.14.27"
|
|
|
|
tower-http = "0.4"
|
|
|
|
utoipa = "4.0"
|
2024-01-31 08:30:48 +00:00
|
|
|
utoipa-swagger-ui = "6.0"
|
2023-11-10 11:58:20 +00:00
|
|
|
futures = "0.3"
|
2023-11-10 12:47:16 +00:00
|
|
|
serde_yaml = "0.9.25"
|
|
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
2024-01-31 08:30:48 +00:00
|
|
|
eyre = "0.6"
|
|
|
|
|