diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-06-29 09:48:27 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-07-02 12:16:33 +0200 |
| commit | 6c8f497ee071a99c27a6906dcd5ffb40589bbc8e (patch) | |
| tree | ab1d4df5715372401aaab4750c8cde0c05938fde /talpid-core/src | |
| parent | f04ffa0a8393d42f63813a71485ee043966417f1 (diff) | |
| download | mullvadvpn-6c8f497ee071a99c27a6906dcd5ffb40589bbc8e.tar.xz mullvadvpn-6c8f497ee071a99c27a6906dcd5ffb40589bbc8e.zip | |
Only import ipnetwork/lazy_static on unix
Diffstat (limited to 'talpid-core/src')
| -rw-r--r-- | talpid-core/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/talpid-core/src/lib.rs b/talpid-core/src/lib.rs index a043538442..fd26752fac 100644 --- a/talpid-core/src/lib.rs +++ b/talpid-core/src/lib.rs @@ -17,10 +17,12 @@ extern crate log; #[macro_use] extern crate error_chain; +#[cfg(unix)] extern crate ipnetwork; extern crate jsonrpc_core; #[macro_use] extern crate jsonrpc_macros; +#[cfg(unix)] #[macro_use] extern crate lazy_static; extern crate libc; |
