2017-07-14 20:40:28 +02:00
|
|
|
[package]
|
|
|
|
name = "parity-whisper"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
description = "Whisper Protocol implementation for Parity"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "0.9"
|
|
|
|
byteorder = "1.0.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2017-07-14 20:40:28 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
2019-02-06 17:53:34 +01:00
|
|
|
parity-crypto = "0.3.0"
|
2018-12-28 10:33:49 +01:00
|
|
|
ethkey = { path = "../accounts/ethkey" }
|
2017-07-14 20:40:28 +02:00
|
|
|
hex = "0.2"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-12-28 10:33:49 +01:00
|
|
|
memzero = { path = "../util/memzero" }
|
2017-07-14 20:40:28 +02:00
|
|
|
ordered-float = "0.5"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2017-07-14 20:40:28 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
slab = "0.3"
|
2018-09-25 12:24:59 +02:00
|
|
|
smallvec = "0.6"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2019-03-19 23:17:05 +01:00
|
|
|
time-utils = { path = "../util/time-utils" }
|
2017-07-14 20:40:28 +02:00
|
|
|
|
2019-02-05 14:31:19 +01:00
|
|
|
jsonrpc-core = "10.0.1"
|
2019-02-05 15:47:25 +01:00
|
|
|
jsonrpc-derive = "10.0.2"
|
2019-02-05 14:31:19 +01:00
|
|
|
jsonrpc-pubsub = "10.0.1"
|