[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"