38 lines
1002 B
TOML
38 lines
1002 B
TOML
[package]
|
|
name = "bitcoin"
|
|
version = "0.19.1"
|
|
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", "bitcoin_hashes/fuzztarget"]
|
|
unstable = []
|
|
use-serde = ["serde", "bitcoin_hashes/serde"]
|
|
|
|
[dependencies]
|
|
bech32 = "0.7.1"
|
|
byteorder = "1.2"
|
|
bitcoin_hashes = "0.7"
|
|
bitcoinconsensus = { version = "0.16", optional = true }
|
|
secp256k1 = "0.12"
|
|
serde = { version = "1", optional = true }
|
|
|
|
[dependencies.hex]
|
|
version = "=0.3.2"
|
|
|
|
[dev-dependencies]
|
|
serde_derive = "<1.0.99"
|
|
serde_json = "1"
|
|
serde_test = "1"
|
|
secp256k1 = { version = "0.12", features = [ "rand" ] }
|