b700ff3501
* whisper/cli: add p2p port and ip parameters This is so that those params don't change randomly and are in sync with the URL that is displayed. * feedback: Result instead of panic Co-Authored-By: gballet <gballet@gmail.com> * feedback: Map error in port conversion Co-Authored-By: gballet <gballet@gmail.com> * whisper/cli: User can specify enode private key So that the enode doesn't change at every run. * whipser/cli: finish integrating review feedback. * Accomodate error API change * Update rustc-hex version in whisper/cli/Cargo.toml Co-Authored-By: gballet <gballet@gmail.com> * Update README with new whisper cli options * Fix typo in error message Co-Authored-By: gballet <gballet@gmail.com> * Fix Cargo.lock and build issue after lib version upgrade * Fix another typo Co-Authored-By: gballet <gballet@gmail.com>
27 lines
651 B
TOML
27 lines
651 B
TOML
[package]
|
|
name = "whisper-cli"
|
|
description = "Whisper command line interface"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
docopt = "1.0"
|
|
env_logger = "0.5"
|
|
ethcore-network = { path = "../../util/network" }
|
|
ethcore-network-devp2p = { path = "../../util/network-devp2p" }
|
|
jsonrpc-core = "10.0.1"
|
|
jsonrpc-http-server = "10.0.1"
|
|
jsonrpc-pubsub = "10.0.1"
|
|
log = "0.4"
|
|
panic_hook = { path = "../../util/panic-hook" }
|
|
parity-whisper = { path = "../" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
ethkey = { path = "../../accounts/ethkey" }
|
|
rustc-hex = "2.0"
|
|
|
|
[[bin]]
|
|
name = "whisper"
|
|
path = "src/main.rs"
|