[package]
edition = "2018"
name = "bitcoin-internals"
version = "0.2.1"
authors = [
"Andrew Poelstra <apoelstra@wpsoftware.net>",
"The Rust Bitcoin developers",
]
build = "build.rs"
exclude = [
"tests",
"contrib",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal types and macros used by rust-bitcoin ecosystem"
documentation = "https://docs.rs/bitcoin-internals"
readme = "README.md"
keywords = ["internal"]
categories = ["cryptography::cryptocurrencies"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
alloc = []
default = []
std = ["alloc"]
[lib]
name = "bitcoin_internals"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0.103"
optional = true
default-features = false
[dev-dependencies]
[lints.rust.unexpected_cfgs]
level = "deny"
priority = 0
check-cfg = ["cfg(rust_v_1_55)"]