summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-01-16 16:49:05 +0100
committerLinus Färnstrand <linus@mullvad.net>2017-01-30 10:07:26 +0100
commita720e761bd54f686f1f3f4520423cd087f25e63d (patch)
treedc1cd631c5400b2a11d413f03d193bf25d866bdb
parent5532e6e805644d23ea446e0608f5a76023345199 (diff)
downloadmullvadvpn-a720e761bd54f686f1f3f4520423cd087f25e63d.tar.xz
mullvadvpn-a720e761bd54f686f1f3f4520423cd087f25e63d.zip
Initial empty talpid_openvpn_plugin crate
-rw-r--r--Cargo.toml3
-rw-r--r--talpid_openvpn_plugin/Cargo.lock4
-rw-r--r--talpid_openvpn_plugin/Cargo.toml9
-rw-r--r--talpid_openvpn_plugin/src/lib.rs0
4 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index bee6d9852c..3f273a71ea 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,3 +5,6 @@ authors = ["Linus Färnstrand <linus@mullvad.net>"]
[dependencies]
clonablechild = "0.1"
+
+[dependencies.talpid_openvpn_plugin]
+path = "talpid_openvpn_plugin"
diff --git a/talpid_openvpn_plugin/Cargo.lock b/talpid_openvpn_plugin/Cargo.lock
new file mode 100644
index 0000000000..3118e68d48
--- /dev/null
+++ b/talpid_openvpn_plugin/Cargo.lock
@@ -0,0 +1,4 @@
+[root]
+name = "talpid_openvpn_plugin"
+version = "0.1.0"
+
diff --git a/talpid_openvpn_plugin/Cargo.toml b/talpid_openvpn_plugin/Cargo.toml
new file mode 100644
index 0000000000..5c94ca8bf1
--- /dev/null
+++ b/talpid_openvpn_plugin/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "talpid_openvpn_plugin"
+version = "0.1.0"
+authors = ["Linus Färnstrand <linus@mullvad.net>"]
+
+[lib]
+crate-type = ["dylib"]
+
+[dependencies]
diff --git a/talpid_openvpn_plugin/src/lib.rs b/talpid_openvpn_plugin/src/lib.rs
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/talpid_openvpn_plugin/src/lib.rs