27 lines
661 B
TOML
27 lines
661 B
TOML
[package]
|
|
name = "bitcoin-internals"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "The Rust Bitcoin developers"]
|
|
license = "CC0-1.0"
|
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
|
documentation = "https://docs.rs/bitcoin-internals"
|
|
description = "Internal types and macros used by rust-bitcoin ecosystem"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
keywords = ["internal"]
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
exclude = ["tests", "contrib"]
|
|
|
|
[features]
|
|
default = []
|
|
std = ["alloc"]
|
|
alloc = []
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|