- clap 4 CLI with wallet, tx, mine, block, chain commands - reqwest HTTP client (REST API only, no lib dependency) - Colored output with owo-colors + comfy-table - Mining progress bar with indicatif
25 lines
559 B
TOML
25 lines
559 B
TOML
[package]
|
|
name = "blockchain-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Alex"]
|
|
license = "MIT"
|
|
description = "CLI tool for interacting with the blockchain node via REST API"
|
|
|
|
[[bin]]
|
|
name = "blockchain-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
owo-colors = "4"
|
|
comfy-table = "7"
|
|
indicatif = "0.17"
|
|
anyhow = "1"
|
|
dirs = "6"
|
|
chrono = "0.4"
|