[package] name = "base58ck" version = "0.2.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.63.0" exclude = ["tests", "contrib"] [features] default = ["std"] std = ["alloc", "hashes/std", "internals/std"] alloc = ["hashes/alloc", "internals/alloc"] [dependencies] hashes = { package = "bitcoin_hashes", version = "0.15.0", default-features = false } internals = { package = "bitcoin-internals", version = "0.4.0" } [dev-dependencies] hex = { package = "hex-conservative", version = "0.3.0", default-features = false, features = ["alloc"] } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [lints.rust] unexpected_cfgs = { level = "deny", check-cfg = ['cfg(bench)', 'cfg(fuzzing)', 'cfg(kani)' ] }