rust-bitcoin-unsafe-fast/Cargo.toml

43 lines
1.0 KiB
TOML
Raw Normal View History

2014-07-18 13:56:17 +00:00
[package]
name = "bitcoin"
2019-08-16 20:08:36 +00:00
version = "0.19.1"
2014-07-18 13:56:17 +00:00
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/"
2018-04-11 19:13:43 +00:00
documentation = "https://docs.rs/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"
2018-03-10 14:35:49 +00:00
[features]
fuzztarget = ["secp256k1/fuzztarget", "bitcoin_hashes/fuzztarget"]
2019-01-07 21:43:23 +00:00
unstable = []
2018-11-10 00:45:00 +00:00
use-serde = ["serde", "bitcoin_hashes/serde"]
2018-03-10 14:35:49 +00:00
2015-03-26 15:44:49 +00:00
[dependencies]
bech32 = "0.7.1"
2018-12-07 03:45:43 +00:00
byteorder = "1.2"
bitcoin_hashes = "0.7"
bitcoinconsensus = { version = "0.16", optional = true }
2019-08-16 17:18:15 +00:00
secp256k1 = "0.12"
2015-03-26 15:44:49 +00:00
[dependencies.serde]
version = "=1.0.98"
2018-11-10 00:45:00 +00:00
features = ["derive"]
optional = true
[dependencies.hex]
version = "=0.3.2"
2018-11-10 00:45:00 +00:00
[dev-dependencies]
serde_derive = "=1.0.98"
2018-11-10 00:45:00 +00:00
serde_json = "1"
serde_test = "1"
2019-08-16 17:18:15 +00:00
secp256k1 = { version = "0.12", features = [ "rand" ] }