[package] name = "crypto-addr" version = "0.2.3" edition = "2021" authors = ["pezcore"] description = "Library for cryptocurrency address and WIF encoding" repository = "https://gitlab.com/pezcore/crypto-addr.git" readme = "README.md" license = "MIT" keywords = [ "cryptocurrency", "address", "WIF", "bitcoin", "encode"] categories = ["cryptography::cryptocurrencies"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] base58 = "0.2.0" bitcoin_hashes = "0.11.0" bs58 = "0.4.0" cashaddr = "0.1.2" hex = "0.4.3" eip55 = {version = "0.3.0", optional = true} k256 = {version = "0.13.0", optional = true} sha3 = {version = "0.10.6", optional = true} strum = "0.24" strum_macros = "0.24" secp256k1 = { version = "0.26.0", optional = true } [dev-dependencies] hex-literal = "0.3.4" hex = "0.4.3" [features] eth = ["eip55", "k256", "sha3"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]