summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml5
-rw-r--r--talpid-wireguard/Cargo.toml8
2 files changed, 9 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e33522942f..330bf0d7d6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -105,6 +105,11 @@ tun = { version = "0.5.5", features = ["async"] }
socket2 = "0.5.7"
reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls"] }
+netlink-packet-core = "0.4.2"
+netlink-packet-route = "0.13"
+netlink-packet-utils = "0.5.1"
+netlink-proto = "0.10"
+
# Hickory & DNS
hickory-proto = "0.24.3"
hickory-resolver = "0.24.3"
diff --git a/talpid-wireguard/Cargo.toml b/talpid-wireguard/Cargo.toml
index 02a37c4215..d8407b25f8 100644
--- a/talpid-wireguard/Cargo.toml
+++ b/talpid-wireguard/Cargo.toml
@@ -57,10 +57,10 @@ talpid-net = { path = "../talpid-net" }
[target.'cfg(target_os = "linux")'.dependencies]
rtnetlink = "0.11"
-netlink-packet-core = "0.4.2"
-netlink-packet-route = "0.13"
-netlink-packet-utils = "0.5.1"
-netlink-proto = "0.10"
+netlink-packet-core = { workspace = true }
+netlink-packet-route = { workspace = true }
+netlink-packet-utils = { workspace = true }
+netlink-proto = { workspace = true }
talpid-dbus = { path = "../talpid-dbus" }
[target.'cfg(windows)'.dependencies]