summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2025-09-30 15:39:07 +0200
committerDavid Lönnhager <david.l@mullvad.net>2025-10-03 16:43:07 +0200
commitf8ff2810a499ac195d1b883a20e879487b48d66b (patch)
treed9ee6c2507cc15c5a63c3af38a77d2e67c6b83ca
parentb597789d7cc9105189afebf937c03c400ade45d6 (diff)
downloadmullvadvpn-f8ff2810a499ac195d1b883a20e879487b48d66b.tar.xz
mullvadvpn-f8ff2810a499ac195d1b883a20e879487b48d66b.zip
Update winreg
-rw-r--r--Cargo.lock14
-rw-r--r--Cargo.toml1
-rw-r--r--talpid-core/Cargo.toml2
-rw-r--r--talpid-openvpn/Cargo.toml2
-rw-r--r--test/Cargo.lock16
-rw-r--r--test/test-runner/Cargo.toml2
6 files changed, 19 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a634e91e39..fc683a8d41 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5575,7 +5575,7 @@ dependencies = [
"windows-core 0.58.0",
"windows-service",
"windows-sys 0.61.1",
- "winreg 0.51.0",
+ "winreg 0.55.0",
"wmi",
]
@@ -5647,7 +5647,7 @@ dependencies = [
"widestring",
"winapi",
"windows-sys 0.61.1",
- "winreg 0.51.0",
+ "winreg 0.55.0",
]
[[package]]
@@ -7245,16 +7245,6 @@ dependencies = [
[[package]]
name = "winreg"
-version = "0.51.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc"
-dependencies = [
- "cfg-if",
- "windows-sys 0.48.0",
-]
-
-[[package]]
-name = "winreg"
version = "0.55.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
diff --git a/Cargo.toml b/Cargo.toml
index 2301179fcf..f71bab9b30 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -97,6 +97,7 @@ serde = "1.0.204"
serde_json = "1.0.122"
windows = "0.61.0"
windows-sys = "0.61.0"
+winreg = "0.55"
nix = "0.30.1"
strum = { version = "0.27" }
rand = "0.9"
diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml
index 0c14671c6e..4f99bd9c5a 100644
--- a/talpid-core/Cargo.toml
+++ b/talpid-core/Cargo.toml
@@ -71,7 +71,7 @@ talpid-net = { path = "../talpid-net" }
bitflags = "2.6"
csv = "1.3.1"
widestring = "1.0"
-winreg = { version = "0.51", features = ["transactions"] }
+winreg = { workspace = true, features = ["transactions"] }
memoffset = "0.6"
once_cell = { workspace = true }
windows-service = "0.6.0"
diff --git a/talpid-openvpn/Cargo.toml b/talpid-openvpn/Cargo.toml
index 031d6f996f..656c7de32e 100644
--- a/talpid-openvpn/Cargo.toml
+++ b/talpid-openvpn/Cargo.toml
@@ -31,7 +31,7 @@ prost = { workspace = true }
[target.'cfg(windows)'.dependencies]
widestring = "1.0"
-winreg = { version = "0.51", features = ["transactions"] }
+winreg = { workspace = true, 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 ..
diff --git a/test/Cargo.lock b/test/Cargo.lock
index 0e89ab61cf..8d0bdfb29b 100644
--- a/test/Cargo.lock
+++ b/test/Cargo.lock
@@ -682,7 +682,7 @@ dependencies = [
"libc",
"option-ext",
"redox_users",
- "windows-sys 0.59.0",
+ "windows-sys 0.61.1",
]
[[package]]
@@ -1641,7 +1641,7 @@ dependencies = [
"socket2 0.5.8",
"widestring",
"windows-sys 0.48.0",
- "winreg",
+ "winreg 0.50.0",
]
[[package]]
@@ -3752,7 +3752,7 @@ dependencies = [
"tokio-util",
"windows-service",
"windows-sys 0.45.0",
- "winreg",
+ "winreg 0.55.0",
]
[[package]]
@@ -4810,6 +4810,16 @@ dependencies = [
]
[[package]]
+name = "winreg"
+version = "0.55.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
+dependencies = [
+ "cfg-if",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
name = "wit-bindgen-rt"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/test/test-runner/Cargo.toml b/test/test-runner/Cargo.toml
index fa277332d9..3e1c8df913 100644
--- a/test/test-runner/Cargo.toml
+++ b/test/test-runner/Cargo.toml
@@ -40,7 +40,7 @@ socket2 = { workspace = true, features = ["all"] }
talpid-windows = { path = "../../talpid-windows" }
windows-service = "0.6"
-winreg = "0.50"
+winreg = "0.55"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.45.0"