Cargo.toml 950 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"
Marek Kotewicz's avatar
Marek Kotewicz committed
authors = ["Parity Technologies <[email protected]>"]
Marek Kotewicz's avatar
Marek Kotewicz committed
description = "Parity bitcoin client."
Marek Kotewicz's avatar
Marek Kotewicz committed

[dependencies]
app_dirs = { git = "https://github.com/paritytech/app-dirs-rs" }
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" }
network = { path = "network" }
miner = { path = "miner" }
Marek Kotewicz's avatar
Marek Kotewicz committed
p2p = { path = "p2p" }
Marek Kotewicz's avatar
Marek Kotewicz committed
script = { path = "script" }
storage = { path = "storage" }
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
import = { path = "import" }
Marek Kotewicz's avatar
Marek Kotewicz committed
logs = { path = "logs" }
rpc = { path = "rpc" }
primitives = { path = "primitives" }
Marek Kotewicz's avatar
Marek Kotewicz committed

[profile.dev]
debug = true
panic = 'abort'

[profile.release]
debug = true
panic = 'abort'

[profile.test]
debug = true

Marek Kotewicz's avatar
Marek Kotewicz committed
[[bin]]
path = "pbtc/main.rs"
name = "pbtc"
members = ["bencher"]