summaryrefslogtreecommitdiffhomepage
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2016-12-07 13:37:28 +0100
committerLinus Färnstrand <linus@mullvad.net>2016-12-07 14:31:08 +0100
commit6d8e98afb08d067b98616d5c7f9ebe3570fdc838 (patch)
treeaef3464d1db8c9f81841112617acf9104cdf30eb /src/lib.rs
parent171eca6adc5e5ce1937470fe5a3e128f4d3af481 (diff)
downloadmullvadvpn-6d8e98afb08d067b98616d5c7f9ebe3570fdc838.tar.xz
mullvadvpn-6d8e98afb08d067b98616d5c7f9ebe3570fdc838.zip
Change RemoteAddr::from_str to support IPv6
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c65c221aec..7683c6dc3b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,6 +2,8 @@
//! The core components of the talpidaemon VPN client.
+extern crate regex;
+
/// Working with processes.
pub mod process;