parity-zcash/Cargo.toml

20 lines
390 B
TOML
Raw Normal View History

2016-08-15 05:50:20 -07:00
[package]
name = "pbtc"
version = "0.1.0"
2016-09-30 05:44:50 -07:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io>"]
description = "Parity bitcoin client."
2016-08-15 05:50:20 -07:00
[dependencies]
2016-09-30 05:44:50 -07:00
clap = { version = "2", features = ["yaml"] }
2016-09-19 06:09:22 -07:00
bitcrypto = { path = "crypto" }
2016-09-19 06:39:57 -07:00
keys = { path = "keys" }
2016-10-03 07:29:07 -07:00
message = { path = "message" }
2016-09-20 23:54:08 -07:00
p2p = { path = "p2p" }
2016-09-19 07:09:05 -07:00
script = { path = "script" }
2016-09-30 05:44:50 -07:00
[[bin]]
path = "pbtc/main.rs"
name = "pbtc"