diff options
| -rw-r--r-- | Cargo.lock | 15 | ||||
| -rw-r--r-- | talpid-core/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-openvpn-plugin/Cargo.toml | 2 |
3 files changed, 14 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 9c2b2a5a11..6a82953d00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1170,13 +1170,21 @@ dependencies = [ [[package]] name = "openvpn-plugin" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/mullvad/openvpn-plugin-rs?branch=auth-failed-event#6e2586030d6c8fb0e39d88769677a4085a1dd121" dependencies = [ "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] +name = "openvpn-plugin" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "os_pipe" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1643,7 +1651,7 @@ dependencies = [ "mnl 0.1.0 (git+https://github.com/mullvad/mnl-rs)", "nftnl 0.1.0 (git+https://github.com/mullvad/nftnl-rs)", "notify 4.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "openvpn-plugin 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "openvpn-plugin 0.3.0 (git+https://github.com/mullvad/openvpn-plugin-rs?branch=auth-failed-event)", "os_pipe 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "pfctl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "resolv-conf 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1690,7 +1698,7 @@ dependencies = [ "jsonrpc-client-core 0.5.0 (git+https://github.com/mullvad/jsonrpc-client-rs)", "jsonrpc-client-ipc 0.5.0 (git+https://github.com/mullvad/jsonrpc-client-rs)", "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "openvpn-plugin 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "openvpn-plugin 0.3.0 (git+https://github.com/mullvad/openvpn-plugin-rs?branch=auth-failed-event)", "talpid-ipc 0.1.0", "tokio 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2269,6 +2277,7 @@ dependencies = [ "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" "checksum openssl 0.10.11 (registry+https://github.com/rust-lang/crates.io-index)" = "6c24d3508b4fb6da175c10baac54c578b33f09c89ae90c6fe9788b3b4768efdc" "checksum openssl-sys 0.9.35 (registry+https://github.com/rust-lang/crates.io-index)" = "912f301a749394e1025d9dcddef6106ddee9252620e6d0a0e5f8d0681de9b129" +"checksum openvpn-plugin 0.3.0 (git+https://github.com/mullvad/openvpn-plugin-rs?branch=auth-failed-event)" = "<none>" "checksum openvpn-plugin 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f01f94fa077e8648fa20c654f6aef90e1a0feae5455a7b5d80c19eadeb97c7e8" "checksum os_pipe 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fe033225d563042c3eeb22ffd1d2ea1aefcc48e7e37151a064c9e0bae64b253f" "checksum os_pipe 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9d339267cdef39ee54ef165fdfaa2c7289a7465f0188ebe1c8a63872ca64c7" diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index b724906a7a..72c0deefda 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -15,7 +15,7 @@ jsonrpc-macros = { git = "https://github.com/mullvad/jsonrpc", branch = "make-ip libc = "0.2.20" log = "0.4" -openvpn-plugin = { version = "0.3", features = ["serde"] } +openvpn-plugin = { git = "https://github.com/mullvad/openvpn-plugin-rs", branch = "auth-failed-event", features = ["serde"] } os_pipe = "0.7" shell-escape = "0.1" tokio-core = "0.1" diff --git a/talpid-openvpn-plugin/Cargo.toml b/talpid-openvpn-plugin/Cargo.toml index 626e71a134..488cef4248 100644 --- a/talpid-openvpn-plugin/Cargo.toml +++ b/talpid-openvpn-plugin/Cargo.toml @@ -18,7 +18,7 @@ tokio-reactor = "0.1" tokio = "0.1" futures = "0.1" -openvpn-plugin = { version = "0.3", features = ["serde", "log"] } +openvpn-plugin = { git = "https://github.com/mullvad/openvpn-plugin-rs", branch = "auth-failed-event", features = ["serde", "log"] } talpid-ipc = { path = "../talpid-ipc" } |
