[package]
edition = "2021"
name = "bitcoin-crypto-toolkit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool and Rust library for Bitcoin cryptography operations including SHA256, RIPEMD160, HASH160, secp256k1 key generation, and address derivation"
readme = "README.md"
keywords = [
"bitcoin",
"cryptography",
"crypto",
"blockchain",
"secp256k1",
]
categories = [
"cryptography",
"development-tools",
]
license = "MIT"
[lib]
name = "bitcoin_crypto_toolkit"
path = "src/lib.rs"
[[bin]]
name = "bitcoin-crypto-toolkit"
path = "src/main.rs"
[dependencies.base58]
version = "0.2"
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.owo-colors]
version = "4.2.1"
[dependencies.ripemd]
version = "0.1"
[dependencies.secp256k1]
version = "0.29"
features = ["rand-std"]
[dependencies.sha2]
version = "0.10"