[package] name = "base58ck" version = "0.1.0" authors = ["Andrew Poelstra "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/" description = "Bitcoin base58 encoding with checksum." categories = ["cryptography::cryptocurrencies", "encoding"] keywords = ["bitcoin", "base58", "encode", "decode", "checksum"] readme = "README.md" edition = "2021" rust-version = "1.56.1" exclude = ["tests", "contrib"] [features] default = ["std"] std = ["hashes/std", "internals/std"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["alloc"] } internals = { package = "bitcoin-internals", version = "0.3.0", features = ["alloc"] } [dev-dependencies] hex = { package = "hex-conservative", version = "0.2.0", default-features = false, features = ["alloc"] }