[package] name = "wallet-wizard" authors = ["Chaitanya Krishna"] version = "0.2.0" edition = "2021" description = "Embark on a cryptographic journey with wallet-wizard, a Rust library that opens portals to the blockchain realm. This mystical tool harnesses the ancient art of BIP-39 mnemonics to generate secure wallets. Whether you're a seasoned sorcerer of the blockchain world or a novice in the cryptographic universe, wallet-wizard offers a seamless and secure way to create wallets. Perfect for applications needing robust wallet functionality, it's your go-to spellbook for generating, managing, and utilizing wallets in your Rust applications." repository = "https://github.com/ChaituKReddy/wallet-wizard-rs" license = "MIT" keywords = [ "cryptocurrency", "wallet", "blockchain", "ethereum", "crypto-wallet", ] categories = ["cryptography", "network-programming"] readme = "README.md" [dependencies] bip39 = { version = "2.0.0", features = ["rand_core", "rand"] } clap = { version = "4.0.0", features = ["derive"] } colored = "2.1.0" hdkey = "0.0.5" hex = "0.4.3" prettytable = "0.10.0" secp256k1 = "0.29.0" tiny-keccak = { version = "2.0.0", features = ["keccak"] }