2023-09-18 15:35:20 +02:00
|
|
|
[package]
|
|
|
|
name = "nomos-cli"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Cli app to interact with Nomos nodes and perform various tasks"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-14 09:53:41 +09:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2024-10-24 16:21:27 +03:00
|
|
|
executor-http-client = { path = "../clients/executor-http-client" }
|
|
|
|
hex = "0.4.3"
|
2024-08-19 15:44:55 +03:00
|
|
|
kzgrs-backend = { path = "../nomos-da/kzgrs-backend" }
|
2024-10-22 15:51:54 +02:00
|
|
|
nomos-core = { path = "../nomos-core/chain-defs" }
|
2023-10-30 16:19:25 +01:00
|
|
|
nomos-node = { path = "../nodes/nomos-node" }
|
2024-10-24 16:21:27 +03:00
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
2023-10-30 16:19:25 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-10-24 16:21:27 +03:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = "0.3"
|