diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-10-29 16:34:23 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-10-29 16:34:23 +0100 |
| commit | 7e4eb3711be85e084dfbf65d090b94f482f084c1 (patch) | |
| tree | 52a27abeb3f967a44d577bd621fdf3ab4aab2ca6 /talpid-openvpn-plugin/src/processing.rs | |
| parent | da2c819a0338f652889f17bb6e3f7924d0eb956c (diff) | |
| download | mullvadvpn-7e4eb3711be85e084dfbf65d090b94f482f084c1.tar.xz mullvadvpn-7e4eb3711be85e084dfbf65d090b94f482f084c1.zip | |
Remove #[macro_use] from jsonrpc_macros and jsonrpc_client_core
Diffstat (limited to 'talpid-openvpn-plugin/src/processing.rs')
| -rw-r--r-- | talpid-openvpn-plugin/src/processing.rs | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/talpid-openvpn-plugin/src/processing.rs b/talpid-openvpn-plugin/src/processing.rs index ae2cbb7526..5ac6bed8d3 100644 --- a/talpid-openvpn-plugin/src/processing.rs +++ b/talpid-openvpn-plugin/src/processing.rs @@ -1,16 +1,13 @@ -use openvpn_plugin; -use std::collections::HashMap; - extern crate futures; -use jsonrpc_client_core::{Future, Result as ClientResult, Transport}; -use jsonrpc_client_ipc::IpcTransport; - -use tokio::reactor::Handle; -use tokio::runtime::Runtime; - use super::Arguments; -use std::thread; +use jsonrpc_client_core::{ + expand_params, jsonrpc_client, Future, Result as ClientResult, Transport, +}; +use jsonrpc_client_ipc::IpcTransport; +use openvpn_plugin; +use std::{collections::HashMap, thread}; +use tokio::{reactor::Handle, runtime::Runtime}; error_chain! { errors { |
