rust-bitcoin/Cargo.toml

37 lines
879 B
TOML
Raw Normal View History

2014-07-18 06:56:17 -07:00
[package]
name = "bitcoin"
version = "0.11.2"
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/"
documentation = "https://docs.rs/bitcoin/0.11.1/secp256k1/"
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]
bitcoinconsenus = ["bitcoinconsensus"]
fuzztarget = ["secp256k1/fuzztarget"]
2018-03-10 06:35:49 -08:00
2015-03-26 08:44:49 -07:00
[dependencies]
2018-03-09 12:27:13 -08:00
bitcoin-bech32 = "0.5.1"
2017-07-17 08:57:35 -07:00
byteorder = "1.1"
rand = "0.3"
rust-crypto = "0.2"
rustc-serialize = "0.3"
serde = "0.6"
strason = "0.3"
2018-03-10 06:35:49 -08:00
bitcoinconsensus = { version = "0.16", optional=true }
2015-03-26 08:44:49 -07:00
[dependencies.secp256k1]
version = "0.8"
features = [ "rand", "serde" ]
2018-03-10 06:35:49 -08:00