summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-09-26 23:07:32 +0200
committerLinus Färnstrand <linus@mullvad.net>2017-09-26 23:07:32 +0200
commitbcb69a48802ce84116e61285e6f1b582ed717779 (patch)
treec9a38a0952196095eaaa1373b6e9ba4e46ff10c0
parent30ce3cccbba086f7a0c668e7950cb539a0eefccc (diff)
downloadmullvadvpn-bcb69a48802ce84116e61285e6f1b582ed717779.tar.xz
mullvadvpn-bcb69a48802ce84116e61285e6f1b582ed717779.zip
Remove unused assert_matches import
-rw-r--r--Cargo.lock1
-rw-r--r--talpid-core/Cargo.toml2
-rw-r--r--talpid-core/src/lib.rs5
3 files changed, 0 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 563a7f25c1..69675812ef 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1186,7 +1186,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "talpid-core"
version = "0.1.0"
dependencies = [
- "assert_matches 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"duct 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"jsonrpc-core 7.1.1 (git+https://github.com/paritytech/jsonrpc?tag=v7.1.1)",
diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml
index 36357ee594..fc2df075ec 100644
--- a/talpid-core/Cargo.toml
+++ b/talpid-core/Cargo.toml
@@ -26,5 +26,3 @@ pfctl = { git = "ssh://git@github.com/mullvad/pfctl-rs.git" }
socket-relay = { path = "../socket-relay" }
tokio-core = "0.1"
-[dev-dependencies]
-assert_matches = "1.0"
diff --git a/talpid-core/src/lib.rs b/talpid-core/src/lib.rs
index c14377919e..da6c49c580 100644
--- a/talpid-core/src/lib.rs
+++ b/talpid-core/src/lib.rs
@@ -10,11 +10,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.
-
-#[cfg(test)]
-#[macro_use]
-extern crate assert_matches;
-
extern crate duct;
#[macro_use]