blockchain-cli/Cargo.toml
StillHammer 96b4dfa77b Initial setup: Rust CLI tool for blockchain node
- 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
2026-02-01 10:12:30 +08:00

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"