rust-bitcoin/Cargo.toml

28 lines
458 B
TOML
Raw Normal View History

2014-07-18 06:56:17 -07:00
[package]
name = "bitcoin"
2014-07-18 06:56:17 -07:00
version = "0.0.1"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
2014-08-18 18:04:32 -07:00
[lib]
2014-07-18 06:56:17 -07:00
name = "bitcoin"
path = "src/lib.rs"
[dependencies.secp256k1]
git = "https://github.com/apoelstra/bitcoin-secp256k1-rs.git"
[dependencies.eventual]
git = "https://github.com/carllerche/eventual"
2015-03-26 08:44:49 -07:00
[dependencies]
2015-03-26 12:21:48 -07:00
byteorder = "*"
num = "*"
num_cpus = "*"
2015-03-26 12:21:48 -07:00
rand = "*"
rust-crypto = "*"
2015-03-26 08:44:49 -07:00
rustc-serialize = "*"
serde = "*"
serde_macros = "*"
2015-03-26 09:53:49 -07:00
time = "*"
2015-03-26 08:44:49 -07:00