diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-01-17 17:31:46 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-01-30 10:07:26 +0100 |
| commit | deff9f3fc4d4627b07e25bb43eb9a70a0129acaa (patch) | |
| tree | 584a366e3e4aeacbcb6bd55b64858c3ba5a347d9 | |
| parent | a720e761bd54f686f1f3f4520423cd087f25e63d (diff) | |
| download | mullvadvpn-deff9f3fc4d4627b07e25bb43eb9a70a0129acaa.tar.xz mullvadvpn-deff9f3fc4d4627b07e25bb43eb9a70a0129acaa.zip | |
Add lazy_static to OpenVPN plugin
| -rw-r--r-- | talpid_openvpn_plugin/Cargo.lock | 10 | ||||
| -rw-r--r-- | talpid_openvpn_plugin/Cargo.toml | 1 | ||||
| -rw-r--r-- | talpid_openvpn_plugin/src/lib.rs | 2 |
3 files changed, 13 insertions, 0 deletions
diff --git a/talpid_openvpn_plugin/Cargo.lock b/talpid_openvpn_plugin/Cargo.lock index 3118e68d48..6bbe450750 100644 --- a/talpid_openvpn_plugin/Cargo.lock +++ b/talpid_openvpn_plugin/Cargo.lock @@ -1,4 +1,14 @@ [root] name = "talpid_openvpn_plugin" version = "0.1.0" +dependencies = [ + "lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] +[[package]] +name = "lazy_static" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[metadata] +"checksum lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6abe0ee2e758cd6bc8a2cd56726359007748fbf4128da998b65d0b70f881e19b" diff --git a/talpid_openvpn_plugin/Cargo.toml b/talpid_openvpn_plugin/Cargo.toml index 5c94ca8bf1..be65a23f4a 100644 --- a/talpid_openvpn_plugin/Cargo.toml +++ b/talpid_openvpn_plugin/Cargo.toml @@ -7,3 +7,4 @@ authors = ["Linus Färnstrand <linus@mullvad.net>"] crate-type = ["dylib"] [dependencies] +lazy_static = "0.2" diff --git a/talpid_openvpn_plugin/src/lib.rs b/talpid_openvpn_plugin/src/lib.rs index e69de29bb2..656405efb7 100644 --- a/talpid_openvpn_plugin/src/lib.rs +++ b/talpid_openvpn_plugin/src/lib.rs @@ -0,0 +1,2 @@ +#[macro_use] +extern crate lazy_static; |
