Cargo.toml 517 B
Newer Older
Marek Kotewicz's avatar
Marek Kotewicz committed
[package]
name = "pbtc"
version = "0.1.0"
Marek Kotewicz's avatar
Marek Kotewicz committed
license = "GPL-3.0"
authors = ["Ethcore <[email protected]>"]
description = "Parity bitcoin client."
Marek Kotewicz's avatar
Marek Kotewicz committed

[dependencies]
Marek Kotewicz's avatar
Marek Kotewicz committed
clap = { version = "2", features = ["yaml"] }
chain = { path = "chain" }
Marek Kotewicz's avatar
Marek Kotewicz committed
keys = { path = "keys" }
message = { path = "message" }
miner = { path = "miner" }
Marek Kotewicz's avatar
Marek Kotewicz committed
p2p = { path = "p2p" }
Marek Kotewicz's avatar
Marek Kotewicz committed
script = { path = "script" }
NikVolf's avatar
NikVolf committed
db = { path = "db" }
NikVolf's avatar
NikVolf committed
verification = { path = "verification" }
sync = { path = "sync" }
Marek Kotewicz's avatar
Marek Kotewicz committed

[[bin]]
path = "pbtc/main.rs"
name = "pbtc"