2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
[package]
|
2014-07-18 19:07:10 +00:00
|
|
|
name = "bitcoin"
|
2017-12-21 01:10:00 +00:00
|
|
|
version = "0.10.6"
|
2014-07-18 13:56:17 +00:00
|
|
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
2015-05-20 18:14:21 +00:00
|
|
|
license = "CC0-1.0"
|
|
|
|
homepage = "https://github.com/apoelstra/rust-bitcoin/"
|
|
|
|
repository = "https://github.com/apoelstra/rust-bitcoin/"
|
|
|
|
documentation = "https://www.wpsoftware.net/rustdoc/bitcoin/"
|
|
|
|
description = "General purpose library for using and interoperating with Bitcoin and other cryptocurrencies."
|
|
|
|
keywords = [ "crypto", "bitcoin" ]
|
|
|
|
readme = "README.md"
|
|
|
|
|
2014-08-19 01:04:32 +00:00
|
|
|
[lib]
|
2014-07-18 13:56:17 +00:00
|
|
|
name = "bitcoin"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2016-06-12 00:03:10 +00:00
|
|
|
[features]
|
|
|
|
# Compile broken and complicated script interpreter, as well as
|
|
|
|
# an unspendability checker which is not broken (I think) but is
|
|
|
|
# a huge pile of unreviewed code
|
|
|
|
broken_consensus_code = []
|
|
|
|
|
2015-03-26 15:44:49 +00:00
|
|
|
[dependencies]
|
2017-07-17 15:57:35 +00:00
|
|
|
byteorder = "1.1"
|
2015-09-20 17:36:57 +00:00
|
|
|
num = "0.1"
|
|
|
|
rand = "0.3"
|
|
|
|
rust-crypto = "0.2"
|
|
|
|
rustc-serialize = "0.3"
|
2016-10-10 13:22:30 +00:00
|
|
|
secp256k1 = "0.6"
|
2015-09-20 17:36:57 +00:00
|
|
|
serde = "0.6"
|
2015-11-22 15:46:05 +00:00
|
|
|
strason = "0.3"
|
2015-03-26 15:44:49 +00:00
|
|
|
|
2016-03-08 23:24:00 +00:00
|
|
|
[dependencies.jsonrpc]
|
2017-07-28 10:34:07 +00:00
|
|
|
version = "0.8" # for serde macros
|
2016-03-08 23:24:00 +00:00
|
|
|
default-features = false
|
|
|
|
|