base58ck 0.1.100

Bitcoin base58 encoding with checksum.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.74.0"
name = "base58ck"
version = "0.1.100"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
build = false
exclude = [
    "api",
    "tests",
    "contrib",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitcoin base58 encoding with checksum."
readme = "README.md"
keywords = [
    "bitcoin",
    "base58",
    "encode",
    "decode",
    "checksum",
]
categories = [
    "cryptography::cryptocurrencies",
    "encoding",
]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[package.metadata.rbmt.api]
enabled = true

[features]
default = ["std"]
std = ["hashes/std"]

[lib]
name = "base58ck"
path = "src/lib.rs"

[dependencies.hashes]
version = "0.14.0"
features = ["alloc"]
default-features = false
package = "bitcoin_hashes"

[dev-dependencies.hex]
version = "0.2.2"
features = ["alloc"]
default-features = false
package = "hex-conservative"

[lints.rust.unexpected_cfgs]
level = "deny"
priority = 0
check-cfg = [
    "cfg(bench)",
    "cfg(fuzzing)",
    "cfg(kani)",
]