35 lines
816 B
TOML
35 lines
816 B
TOML
|
|
[package]
|
|
name = "bitcoin"
|
|
version = "0.11.1"
|
|
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"
|
|
|
|
[lib]
|
|
name = "bitcoin"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
bitcoinconsenus = ["bitcoinconsensus"]
|
|
|
|
[dependencies]
|
|
byteorder = "1.1"
|
|
rand = "0.3"
|
|
rust-crypto = "0.2"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.6"
|
|
strason = "0.3"
|
|
bitcoinconsensus = { version = "0.16", optional=true }
|
|
|
|
[dependencies.secp256k1]
|
|
version = "0.8"
|
|
features = [ "rand", "serde" ]
|
|
|
|
|