diff options
| author | Erik Larkö <erik@mullvad.net> | 2017-09-07 14:35:24 +0200 |
|---|---|---|
| committer | Erik Larkö <erik@mullvad.net> | 2017-09-13 07:32:26 +0200 |
| commit | 8deee54dc8159ed4fb1905401529bbfeafb94db3 (patch) | |
| tree | 6ae58c12c321d3fdeda76afc05a24d4804f7690c /Cargo.lock | |
| parent | fe619d9db7b891b9c92a327ccac6e3913261fca2 (diff) | |
| download | mullvadvpn-8deee54dc8159ed4fb1905401529bbfeafb94db3.tar.xz mullvadvpn-8deee54dc8159ed4fb1905401529bbfeafb94db3.zip | |
Create talpid-types and put TransportProtocol there
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 91b97a1db7..4ea00f8d59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,12 +1,9 @@ [root] -name = "talpid-openvpn-plugin" +name = "talpid-types" version = "0.1.0" dependencies = [ - "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "openvpn-plugin 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "talpid-ipc 0.1.0", + "serde 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -673,6 +670,7 @@ dependencies = [ "simple-signal 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "talpid-core 0.1.0", "talpid-ipc 0.1.0", + "talpid-types 0.1.0", "toml 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -684,6 +682,7 @@ dependencies = [ "chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "talpid-types 0.1.0", ] [[package]] @@ -1184,6 +1183,7 @@ dependencies = [ "openvpn-plugin 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "pfctl 0.1.0 (git+https://github.com/mullvad/pfctl-rs.git)", "talpid-ipc 0.1.0", + "talpid-types 0.1.0", "uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1205,6 +1205,17 @@ dependencies = [ ] [[package]] +name = "talpid-openvpn-plugin" +version = "0.1.0" +dependencies = [ + "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "openvpn-plugin 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "talpid-ipc 0.1.0", +] + +[[package]] name = "tempdir" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" |
