2017-07-14 20:40:28 +02:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity Ethereum Whisper Protocol Implementation"
|
2017-07-14 20:40:28 +02:00
|
|
|
name = "parity-whisper"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "0.9"
|
|
|
|
byteorder = "1.0.0"
|
2019-06-03 15:36:21 +02:00
|
|
|
ethereum-types = "0.6.0"
|
2017-07-14 20:40:28 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
2019-05-13 11:25:56 +02:00
|
|
|
ring = "0.14.6"
|
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"
|
2019-06-19 13:54:05 +02:00
|
|
|
parity-util-mem = "0.1"
|
2017-07-14 20:40:28 +02:00
|
|
|
ordered-float = "0.5"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2019-06-03 15:36:21 +02:00
|
|
|
rand = "0.6"
|
|
|
|
rand_xorshift = "0.1.1"
|
|
|
|
rlp = "0.4.0"
|
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-07-05 10:24:24 +02:00
|
|
|
jsonrpc-core = "12.0.0"
|
|
|
|
jsonrpc-derive = "12.0.0"
|
|
|
|
jsonrpc-pubsub = "12.0.0"
|
2019-06-29 11:23:58 +02:00
|
|
|
zeroize = "0.9.1"
|