kobe-cli 0.8.1

A multi-chain cryptocurrency wallet CLI tool
[package]
name = "kobe-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme = "../../README.md"
description = "A multi-chain cryptocurrency wallet CLI tool"
keywords = ["crypto", "wallet", "bitcoin", "ethereum", "cli"]
categories = ["command-line-utilities", "cryptography"]

[[bin]]
name = "kobe"
path = "src/main.rs"
# The binary `kobe` shares its name with the `kobe` library crate.
# Disable bin-level rustdoc to avoid cargo-6313 output filename collision.
doc = false

[dependencies]
kobe = { workspace = true, features = ["std", "rand", "camouflage", "all-chains"] }
clap.workspace = true
colored.workspace = true
qrcode.workspace = true
serde.workspace = true
serde_json.workspace = true

[lints]
workspace = true