rust-bitcoin/Cargo.toml

44 lines
983 B
TOML
Raw Normal View History

2014-07-18 06:56:17 -07:00
[package]
name = "bitcoin"
2019-01-15 11:05:27 -08:00
version = "0.16.0"
2014-07-18 06:56:17 -07: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 12:13:43 -07: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-18 18:04:32 -07:00
[lib]
2014-07-18 06:56:17 -07:00
name = "bitcoin"
path = "src/lib.rs"
2018-03-10 06:35:49 -08:00
[features]
fuzztarget = ["secp256k1/fuzztarget"]
serde-decimal = ["serde", "strason"]
2019-01-07 13:43:23 -08:00
unstable = []
2018-03-10 06:35:49 -08:00
2015-03-26 08:44:49 -07:00
[dependencies]
bitcoin-bech32 = "0.8.0"
2018-12-06 19:45:43 -08:00
byteorder = "1.2"
rand = "0.3"
rust-crypto = "0.2"
bitcoinconsensus = { version = "0.16", optional = true }
2015-03-26 08:44:49 -07:00
[dependencies.serde]
version = "1"
optional = true
[dependencies.strason]
version = "0.4"
optional = true
default-features = false
[dependencies.hex]
version = "=0.3.2"
[dependencies.secp256k1]
2019-01-15 09:05:41 -08:00
version = "0.12"
2018-03-21 15:06:51 -07:00
features = [ "rand" ]