summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-09-21 14:57:00 +0200
committerLinus Färnstrand <linus@mullvad.net>2017-09-21 20:18:19 +0200
commit4be15b07ee626c0a5fe81bb834e3a99e58d89c99 (patch)
tree02459f23a14a6ce83306b89edddb83ec1fc661ec
parent0e9702dbc28d25ab2ac24bcc2a69cd831657c7fc (diff)
downloadmullvadvpn-4be15b07ee626c0a5fe81bb834e3a99e58d89c99.tar.xz
mullvadvpn-4be15b07ee626c0a5fe81bb834e3a99e58d89c99.zip
Remove unused crate imports, silencing compiler
-rw-r--r--mullvad-cli/Cargo.toml1
-rw-r--r--mullvad-cli/src/main.rs1
-rw-r--r--mullvad-types/src/lib.rs1
-rw-r--r--talpid-types/src/lib.rs1
4 files changed, 0 insertions, 4 deletions
diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml
index 8a1ef376c0..96d797dae3 100644
--- a/mullvad-cli/Cargo.toml
+++ b/mullvad-cli/Cargo.toml
@@ -16,7 +16,6 @@ lazy_static = "0.2"
log = "0.3"
env_logger = "0.4"
serde = "1.0"
-serde_json = "1.0"
mullvad-types = { path = "../mullvad-types" }
talpid-types = { path = "../talpid-types" }
diff --git a/mullvad-cli/src/main.rs b/mullvad-cli/src/main.rs
index edcfbe3553..274f1cc60f 100644
--- a/mullvad-cli/src/main.rs
+++ b/mullvad-cli/src/main.rs
@@ -20,7 +20,6 @@ extern crate lazy_static;
extern crate log;
extern crate mullvad_types;
extern crate serde;
-extern crate serde_json;
extern crate talpid_ipc;
extern crate talpid_types;
diff --git a/mullvad-types/src/lib.rs b/mullvad-types/src/lib.rs
index 1ec57c010a..2b72c3d538 100644
--- a/mullvad-types/src/lib.rs
+++ b/mullvad-types/src/lib.rs
@@ -7,7 +7,6 @@
//! the License, or (at your option) any later version.
extern crate chrono;
-extern crate serde;
#[macro_use]
extern crate serde_derive;
diff --git a/talpid-types/src/lib.rs b/talpid-types/src/lib.rs
index e6571c6238..3ad746a8f0 100644
--- a/talpid-types/src/lib.rs
+++ b/talpid-types/src/lib.rs
@@ -6,7 +6,6 @@
//! GNU General Public License as published by the Free Software Foundation, either version 3 of
//! the License, or (at your option) any later version.
-extern crate serde;
#[macro_use]
extern crate serde_derive;