2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
[package]
|
2014-07-18 19:07:10 +00:00
|
|
|
name = "bitcoin"
|
2018-08-22 21:18:15 +00:00
|
|
|
version = "0.14.0"
|
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"
|
2018-03-05 19:44:44 +00:00
|
|
|
homepage = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
|
|
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
2018-04-11 19:13:43 +00:00
|
|
|
documentation = "https://docs.rs/bitcoin/"
|
2015-05-20 18:14:21 +00:00
|
|
|
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"
|
|
|
|
|
2018-03-10 14:35:49 +00:00
|
|
|
[features]
|
2018-03-20 16:05:33 +00:00
|
|
|
fuzztarget = ["secp256k1/fuzztarget"]
|
2018-08-20 16:37:19 +00:00
|
|
|
serde-decimal = ["serde", "strason"]
|
2018-03-10 14:35:49 +00:00
|
|
|
|
2015-03-26 15:44:49 +00:00
|
|
|
[dependencies]
|
2018-06-21 18:45:58 +00:00
|
|
|
bitcoin-bech32 = "0.8.0"
|
2017-07-17 15:57:35 +00:00
|
|
|
byteorder = "1.1"
|
2015-09-20 17:36:57 +00:00
|
|
|
rand = "0.3"
|
|
|
|
rust-crypto = "0.2"
|
2018-08-12 20:06:06 +00:00
|
|
|
bitcoinconsensus = { version = "0.16", optional = true }
|
2015-03-26 15:44:49 +00:00
|
|
|
|
2018-08-20 16:37:19 +00:00
|
|
|
[dependencies.serde]
|
|
|
|
version = "1"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.strason]
|
|
|
|
version = "0.4"
|
|
|
|
optional = true
|
|
|
|
default-features = false
|
|
|
|
|
2018-07-24 18:43:03 +00:00
|
|
|
[dependencies.hex]
|
2018-08-22 22:11:46 +00:00
|
|
|
version = "=0.3.2"
|
2018-07-24 18:43:03 +00:00
|
|
|
|
2018-02-18 15:45:35 +00:00
|
|
|
[dependencies.secp256k1]
|
2018-08-22 19:37:32 +00:00
|
|
|
version = "0.11"
|
2018-03-21 22:06:51 +00:00
|
|
|
features = [ "rand" ]
|