ab22d5e278
* Replace ethcore-logger with env-logger. * Fix logger initialization in WASM tests. * uncomment logger initialization in secret store * Don't use ethcore-logger in whisper. * Move ethcore-logger within parity dir. * Uncomment rest from secret-store. * Use `let _ =` in private_contract for consistency * `ok()` to `let _ =` fix in service * Use `let _ = ` for state_db
25 lines
793 B
TOML
25 lines
793 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 = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
|
|
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
|
|
jsonrpc-pubsub = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
|
|
log = "0.4"
|
|
panic_hook = { path = "../../util/panic-hook" }
|
|
parity-whisper = { path = "../" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
|
|
[[bin]]
|
|
name = "whisper"
|
|
path = "src/main.rs"
|