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-core | |
| 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-core')
| -rw-r--r-- | talpid-core/src/lib.rs | 1 | ||||
| -rw-r--r-- | talpid-core/src/tunnel/openvpn.rs | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/talpid-core/src/lib.rs b/talpid-core/src/lib.rs index 9747b2fa92..f2bfb7718f 100644 --- a/talpid-core/src/lib.rs +++ b/talpid-core/src/lib.rs @@ -22,7 +22,6 @@ extern crate futures; #[cfg(unix)] extern crate ipnetwork; extern crate jsonrpc_core; -#[macro_use] extern crate jsonrpc_macros; #[cfg(unix)] extern crate lazy_static; diff --git a/talpid-core/src/tunnel/openvpn.rs b/talpid-core/src/tunnel/openvpn.rs index 5999dc781d..ea2d2d5823 100644 --- a/talpid-core/src/tunnel/openvpn.rs +++ b/talpid-core/src/tunnel/openvpn.rs @@ -214,6 +214,7 @@ impl ProcessHandle for OpenVpnProcHandle { mod event_server { use super::OpenVpnPluginEvent; use jsonrpc_core::{Error, IoHandler, MetaIoHandler}; + use jsonrpc_macros::build_rpc_trait; use std::collections::HashMap; use talpid_ipc; use uuid; |
