diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-07-06 13:23:56 +0200 |
|---|---|---|
| committer | Linus Färnstrand <faern@faern.net> | 2023-07-07 14:52:09 +0200 |
| commit | 1d82cb85f59575edf4004eefde73be5614c3b6d1 (patch) | |
| tree | d5687f7bfcebd9fd4f64ba5a35cdab27caeac824 | |
| parent | 5646ba6df6a64e64b9d3e177b32e5398dd22a10b (diff) | |
| download | mullvadvpn-1d82cb85f59575edf4004eefde73be5614c3b6d1.tar.xz mullvadvpn-1d82cb85f59575edf4004eefde73be5614c3b6d1.zip | |
Upgrade os_pipe to 1.1.4
| -rw-r--r-- | Cargo.lock | 16 | ||||
| -rw-r--r-- | talpid-core/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-openvpn/Cargo.toml | 2 |
3 files changed, 5 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock index a5ec53165a..f9e7a671fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -913,7 +913,7 @@ checksum = "37ae3fc31835f74c2a7ceda3aeede378b0ae2e74c8f1c36559fcc9ae2a4e7d3e" dependencies = [ "libc", "once_cell", - "os_pipe 1.1.4", + "os_pipe", "shared_child", ] @@ -2491,16 +2491,6 @@ dependencies = [ [[package]] name = "os_pipe" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "os_pipe" version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" @@ -3667,7 +3657,7 @@ dependencies = [ "nftnl", "nix 0.23.1", "once_cell", - "os_pipe 0.9.2", + "os_pipe", "parity-tokio-ipc", "parking_lot", "pfctl", @@ -3732,7 +3722,7 @@ dependencies = [ "is-terminal", "lazy_static", "log", - "os_pipe 0.9.2", + "os_pipe", "parity-tokio-ipc", "parking_lot", "prost", diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index f16aa7307c..e9b3b0db1a 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -20,7 +20,7 @@ lazy_static = "1.0" once_cell = "1.13" libc = "0.2" log = "0.4" -os_pipe = "0.9" +os_pipe = "1.1.4" parking_lot = "0.12.0" regex = "1.1.0" talpid-routing = { path = "../talpid-routing" } diff --git a/talpid-openvpn/Cargo.toml b/talpid-openvpn/Cargo.toml index dcab157677..a1d8a44645 100644 --- a/talpid-openvpn/Cargo.toml +++ b/talpid-openvpn/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3.15" is-terminal = "0.4.2" lazy_static = "1.0" log = "0.4" -os_pipe = "0.9" +os_pipe = "1.1.4" parking_lot = "0.12.0" shell-escape = "0.1" talpid-routing = { path = "../talpid-routing" } |
