rust-bitcoin/Cargo.toml

32 lines
712 B
TOML
Raw Normal View History

2014-07-18 06:56:17 -07:00
[package]
name = "bitcoin"
2015-11-15 15:00:51 -08:00
version = "0.4.1"
2014-07-18 06:56:17 -07:00
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
homepage = "https://github.com/apoelstra/rust-bitcoin/"
repository = "https://github.com/apoelstra/rust-bitcoin/"
documentation = "https://www.wpsoftware.net/rustdoc/bitcoin/"
description = "General purpose library for using and interoperating with Bitcoin and other cryptocurrencies."
keywords = [ "crypto", "bitcoin" ]
readme = "README.md"
2014-07-18 06:56:17 -07:00
2014-08-18 18:04:32 -07:00
[lib]
2014-07-18 06:56:17 -07:00
name = "bitcoin"
path = "src/lib.rs"
2015-03-26 08:44:49 -07:00
[dependencies]
byteorder = "0.3"
2015-09-20 14:44:05 -07:00
eventual = "0.1"
num = "0.1"
num_cpus = "0.2"
rand = "0.3"
rust-crypto = "0.2"
rustc-serialize = "0.3"
2015-11-15 15:00:51 -08:00
secp256k1 = "0.5"
serde = "0.6"
2015-09-20 11:10:20 -07:00
serde_json = "0.6"
time = "0.1"
2015-03-26 08:44:49 -07:00