parity-zcash/Cargo.toml

46 lines
961 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 = ["Parity Technologies <admin@parity.io>"]
2016-09-30 05:44:50 -07:00
description = "Parity bitcoin client."
2016-08-15 05:50:20 -07:00
[dependencies]
log = "0.4"
env_logger = "0.5"
app_dirs = { git = "https://github.com/paritytech/app-dirs-rs" }
2017-01-10 00:58:55 -08:00
libc = "0.2"
2016-09-30 05:44:50 -07:00
clap = { version = "2", features = ["yaml"] }
chain = { path = "chain" }
2016-09-19 06:39:57 -07:00
keys = { path = "keys" }
2016-10-03 07:29:07 -07:00
message = { path = "message" }
network = { path = "network" }
2016-10-14 14:37:32 -07:00
miner = { path = "miner" }
2016-09-20 23:54:08 -07:00
p2p = { path = "p2p" }
2016-09-19 07:09:05 -07:00
script = { path = "script" }
storage = { path = "storage" }
2016-10-13 04:13:50 -07:00
db = { path = "db" }
2016-10-17 12:27:45 -07:00
verification = { path = "verification" }
sync = { path = "sync" }
2016-10-30 19:12:44 -07:00
import = { path = "import" }
2016-12-01 01:40:56 -08:00
logs = { path = "logs" }
2016-12-07 02:30:31 -08:00
rpc = { path = "rpc" }
2017-01-10 00:58:55 -08:00
primitives = { path = "primitives" }
2018-05-18 03:43:13 -07:00
serialization = { path = "serialization" }
2016-09-30 05:44:50 -07:00
[profile.dev]
debug = true
[profile.release]
debug = true
[profile.test]
debug = true
2016-09-30 05:44:50 -07:00
[[bin]]
path = "pbtc/main.rs"
name = "pbtc"
2016-11-08 08:01:15 -08:00
[workspace]
2017-04-05 02:45:51 -07:00
members = ["bencher"]