diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-07-01 17:21:09 +0200 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-07-04 15:31:39 +0200 |
| commit | 5fe3aa99935b49e83d0a7ad13ac13d8f2c47d38d (patch) | |
| tree | e2cc5dd66b3a075f2645185972c1a0d31e2455f7 | |
| parent | 3e982cca836db5b7e859f59589b280afeb98bd3a (diff) | |
| download | mullvadvpn-5fe3aa99935b49e83d0a7ad13ac13d8f2c47d38d.tar.xz mullvadvpn-5fe3aa99935b49e83d0a7ad13ac13d8f2c47d38d.zip | |
Make `talpid-openvpn` compile
Add missing feature to dependency of `tokio-parity-ipc`.
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | talpid-openvpn/Cargo.toml | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5aa2d3b30d..482657c481 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5445,6 +5445,7 @@ dependencies = [ "triggered", "uuid", "widestring", + "winapi", "windows-sys 0.52.0", "winreg 0.51.0", ] diff --git a/talpid-openvpn/Cargo.toml b/talpid-openvpn/Cargo.toml index 34df09becf..031d6f996f 100644 --- a/talpid-openvpn/Cargo.toml +++ b/talpid-openvpn/Cargo.toml @@ -34,6 +34,8 @@ widestring = "1.0" winreg = { version = "0.51", features = ["transactions"] } talpid-windows = { path = "../talpid-windows" } once_cell = { workspace = true } +# Only needed because parity-tokio-ipc has forgotten to enable the winerror feature of winapi .. +winapi = { version = "0.3", features = ["winerror"] } [target.'cfg(windows)'.dependencies.windows-sys] workspace = true |
