35 lines
796 B
TOML
35 lines
796 B
TOML
|
|
[package]
|
|
name = "bitcoin"
|
|
version = "0.1.0"
|
|
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"
|
|
|
|
|
|
[lib]
|
|
name = "bitcoin"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies.secp256k1]
|
|
git = "https://github.com/apoelstra/rust-secp256k1.git"
|
|
|
|
[dependencies.eventual]
|
|
git = "https://github.com/carllerche/eventual"
|
|
|
|
[dependencies]
|
|
byteorder = "*"
|
|
num = "*"
|
|
num_cpus = "*"
|
|
rand = "*"
|
|
rust-crypto = "*"
|
|
rustc-serialize = "*"
|
|
serde = "*"
|
|
time = "*"
|
|
|