diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-01-06 11:21:45 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-01-06 11:21:45 +0100 |
| commit | e0c86279fbb4d35c0858cece1fef0b8f055790a0 (patch) | |
| tree | 11a84f4a9566d1667e7f33edbbeefaccf53516c2 | |
| parent | f6cc68cb35eda6b1155a6cd1ce0782be9dafe382 (diff) | |
| download | mullvadvpn-e0c86279fbb4d35c0858cece1fef0b8f055790a0.tar.xz mullvadvpn-e0c86279fbb4d35c0858cece1fef0b8f055790a0.zip | |
Add clonablechild dependency
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | src/lib.rs | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index a40bf04902..bee6d9852c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,3 +4,4 @@ version = "0.0.0" authors = ["Linus Färnstrand <linus@mullvad.net>"] [dependencies] +clonablechild = "0.1" diff --git a/src/lib.rs b/src/lib.rs index e2de62c838..1b3cf59b66 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,6 +2,8 @@ //! The core components of the talpidaemon VPN client. +extern crate clonablechild; + /// Working with processes. pub mod process; |
