[package] name = "walletd" version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" authors = ["The WalletD Team"] description = "The walletd library" homepage = "https://walletd.org/" repository = "https://github.com/walletd/walletd" readme = "../README.md" categories = ["cryptography::cryptocurrencies"] [lib] name = "walletd" path = "src/lib.rs" [dependencies] walletd_bip39 = {path = "../mnemonics/bip39", version="0.2"} walletd_mnemonics_core = {path = "../mnemonics/core", version="0.2"} walletd_coin_core = {path = "../coins/core", version="0.2"} walletd_bitcoin = {path = "../coins/bitcoin", version="0.2"} walletd_ethereum = {path = "../coins/ethereum", version="0.2"} walletd_hd_key = {path = "../mnemonics/hd_key", version="0.2"} anyhow = "1.0.68" hex = { version = "0.4.2" } thiserror = "1.0.40" tokio = "1.23.0" web3 = "0.18.0"