44 lines
970 B
TOML
44 lines
970 B
TOML
|
|
[package]
|
|
name = "bitcoin"
|
|
version = "0.14.2"
|
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
|
license = "CC0-1.0"
|
|
homepage = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
|
documentation = "https://docs.rs/bitcoin/"
|
|
description = "General purpose library for using and interoperating with Bitcoin and other cryptocurrencies."
|
|
keywords = [ "crypto", "bitcoin" ]
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
name = "bitcoin"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
fuzztarget = ["secp256k1/fuzztarget"]
|
|
serde-decimal = ["serde", "strason"]
|
|
|
|
[dependencies]
|
|
bitcoin-bech32 = "0.8.0"
|
|
byteorder = "1.1"
|
|
rand = "0.3"
|
|
rust-crypto = "0.2"
|
|
bitcoinconsensus = { version = "0.16", optional = true }
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
optional = true
|
|
|
|
[dependencies.strason]
|
|
version = "0.4"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.hex]
|
|
version = "=0.3.2"
|
|
|
|
[dependencies.secp256k1]
|
|
version = "0.11"
|
|
features = [ "rand" ]
|