rust-bitcoin-unsafe-fast/Cargo.toml

35 lines
796 B
TOML
Raw Normal View History

2014-07-18 13:56:17 +00:00
[package]
name = "bitcoin"
version = "0.1.0"
2014-07-18 13:56:17 +00: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 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"
[dependencies.secp256k1]
2015-04-14 03:40:32 +00:00
git = "https://github.com/apoelstra/rust-secp256k1.git"
[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 = "*"
num = "*"
num_cpus = "*"
2015-03-26 19:21:48 +00:00
rand = "*"
rust-crypto = "*"
2015-03-26 15:44:49 +00:00
rustc-serialize = "*"
serde = "*"
2015-03-26 16:53:49 +00:00
time = "*"
2015-03-26 15:44:49 +00:00