2018-04-09 16:35:45 +02:00
|
|
|
[package]
|
|
|
|
name = "whisper-cli"
|
2018-05-09 23:25:58 +02:00
|
|
|
description = "Whisper command line interface"
|
2018-04-09 16:35:45 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2018-05-09 23:25:58 +02:00
|
|
|
license = "GPL-3.0"
|
2018-04-09 16:35:45 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-11 11:19:44 +01:00
|
|
|
docopt = "1.0"
|
2019-01-08 15:07:20 +01:00
|
|
|
env_logger = "0.5"
|
|
|
|
ethcore-network = { path = "../../util/network" }
|
|
|
|
ethcore-network-devp2p = { path = "../../util/network-devp2p" }
|
2019-11-11 21:57:38 +01:00
|
|
|
jsonrpc-core = "14.0.0"
|
|
|
|
jsonrpc-http-server = "14.0.0"
|
|
|
|
jsonrpc-pubsub = "14.0.0"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2019-01-08 15:07:20 +01:00
|
|
|
panic_hook = { path = "../../util/panic-hook" }
|
|
|
|
parity-whisper = { path = "../" }
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2019-03-21 15:45:02 +01:00
|
|
|
ethkey = { path = "../../accounts/ethkey" }
|
|
|
|
rustc-hex = "2.0"
|
2018-04-09 16:35:45 +02:00
|
|
|
|
|
|
|
[[bin]]
|
2018-05-09 23:25:58 +02:00
|
|
|
name = "whisper"
|
2018-04-09 16:35:45 +02:00
|
|
|
path = "src/main.rs"
|