2014-07-18 13:56:17 +00:00
|
|
|
[package]
|
2014-07-18 19:07:10 +00:00
|
|
|
name = "bitcoin"
|
2020-09-10 20:06:10 +00:00
|
|
|
version = "0.25.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]
|
2019-01-15 23:34:48 +00:00
|
|
|
fuzztarget = ["secp256k1/fuzztarget", "bitcoin_hashes/fuzztarget"]
|
2019-01-07 21:43:23 +00:00
|
|
|
unstable = []
|
2020-01-09 11:11:49 +00:00
|
|
|
rand = ["secp256k1/rand-std"]
|
2020-01-08 17:02:30 +00:00
|
|
|
use-serde = ["serde", "bitcoin_hashes/serde", "secp256k1/serde"]
|
2020-09-24 10:59:43 +00:00
|
|
|
secp-recovery = ["secp256k1/recovery"]
|
|
|
|
secp-endomorphism = ["secp256k1/endomorphism"]
|
|
|
|
secp-lowmemory = ["secp256k1/lowmemory"]
|
2018-03-10 14:35:49 +00:00
|
|
|
|
2015-03-26 15:44:49 +00:00
|
|
|
[dependencies]
|
2020-01-07 19:27:05 +00:00
|
|
|
bech32 = "0.7.2"
|
2020-09-10 20:06:10 +00:00
|
|
|
bitcoin_hashes = "0.9.0"
|
|
|
|
secp256k1 = "0.19.0"
|
2020-01-07 19:27:05 +00:00
|
|
|
|
|
|
|
bitcoinconsensus = { version = "0.19.0-1", optional = true }
|
2019-08-18 16:25:52 +00:00
|
|
|
serde = { version = "1", optional = true }
|
2019-07-27 07:28:51 +00:00
|
|
|
|
2018-11-10 00:45:00 +00:00
|
|
|
[dev-dependencies]
|
2019-10-17 20:50:27 +00:00
|
|
|
hex = "=0.3.2"
|
2019-08-18 16:25:52 +00:00
|
|
|
serde_derive = "<1.0.99"
|
2020-01-23 09:45:59 +00:00
|
|
|
serde_json = "<1.0.45"
|
2018-11-10 00:45:00 +00:00
|
|
|
serde_test = "1"
|
2020-09-10 20:06:10 +00:00
|
|
|
secp256k1 = { version = "0.19.0", features = ["rand-std"] }
|
2020-06-01 12:44:39 +00:00
|
|
|
# We need to pin ryu (transitive dep from serde_json) to stay compatible with Rust 1.22.0
|
|
|
|
ryu = "<1.0.5"
|