2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
[package]
|
2014-07-18 19:07:10 +00:00
|
|
|
name = "bitcoin"
|
2015-05-20 18:14:21 +00:00
|
|
|
version = "0.1.0"
|
2014-07-18 13:56:17 +00:00
|
|
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
2015-05-20 18:14:21 +00:00
|
|
|
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 13:56:17 +00:00
|
|
|
|
2014-08-19 01:04:32 +00:00
|
|
|
[lib]
|
2014-07-18 13:56:17 +00:00
|
|
|
name = "bitcoin"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2015-03-26 15:08:36 +00:00
|
|
|
[dependencies.secp256k1]
|
2015-04-14 03:40:32 +00:00
|
|
|
git = "https://github.com/apoelstra/rust-secp256k1.git"
|
2014-08-10 19:58:15 +00:00
|
|
|
|
2015-04-07 22:51:57 +00:00
|
|
|
[dependencies.eventual]
|
|
|
|
git = "https://github.com/carllerche/eventual"
|
|
|
|
|
2015-03-26 15:44:49 +00:00
|
|
|
[dependencies]
|
2015-03-26 19:21:48 +00:00
|
|
|
byteorder = "*"
|
2015-04-11 01:55:59 +00:00
|
|
|
num = "*"
|
2015-04-04 18:08:49 +00:00
|
|
|
num_cpus = "*"
|
2015-03-26 19:21:48 +00:00
|
|
|
rand = "*"
|
|
|
|
rust-crypto = "*"
|
2015-03-26 15:44:49 +00:00
|
|
|
rustc-serialize = "*"
|
2015-04-05 03:13:19 +00:00
|
|
|
serde = "*"
|
2015-03-26 16:53:49 +00:00
|
|
|
time = "*"
|
2015-03-26 15:44:49 +00:00
|
|
|
|