parity-zcash/p2p/Cargo.toml

21 lines
529 B
TOML
Raw Normal View History

2016-09-20 23:54:08 -07:00
[package]
name = "p2p"
version = "0.1.0"
authors = ["debris <marek.kotewicz@gmail.com>"]
[dependencies]
tokio-core = { git = "https://github.com/debris/tokio-core" }
2016-10-12 05:30:50 -07:00
parking_lot = "0.3"
2016-09-20 23:54:08 -07:00
futures = "0.1"
2016-10-12 10:39:50 -07:00
futures-cpupool = "0.1"
2016-09-29 08:09:15 -07:00
time = "0.1"
2016-09-29 10:30:17 -07:00
rand = "0.3"
log = "0.3"
abstract-ns = "0.2.1"
ns-dns-tokio = { git = "https://github.com/debris/abstract-ns", path = "ns-dns-tokio" }
2016-09-20 23:54:08 -07:00
2016-10-30 03:44:10 -07:00
primitives = { path = "../primitives"}
2016-09-29 09:53:18 -07:00
bitcrypto = { path = "../crypto" }
2016-10-03 07:29:07 -07:00
message = { path = "../message" }
2016-10-30 03:44:10 -07:00
serialization = { path = "../serialization"}