summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEmīls <emils@mullvad.net>2023-04-26 13:13:29 +0100
committerDavid Lönnhager <david.l@mullvad.net>2023-06-05 19:31:54 +0200
commitcce8e78ea2dfbd3aeb433a4eec51471db53e5286 (patch)
tree117eb93eb2db8d313465510adbe819ad18892908
parent7747639ffa0a1f8d4ee685e88240ca3dff8a9a66 (diff)
downloadmullvadvpn-cce8e78ea2dfbd3aeb433a4eec51471db53e5286.tar.xz
mullvadvpn-cce8e78ea2dfbd3aeb433a4eec51471db53e5286.zip
Remove FS dependencies
-rw-r--r--Cargo.lock3
-rw-r--r--talpid-routing/Cargo.toml6
2 files changed, 6 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0909ef3fc7..eeb783b97a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2305,6 +2305,7 @@ dependencies = [
[[package]]
name = "nix"
version = "0.25.0"
+source = "git+https://github.com/mullvad/nix?rev=8c1410c8c8d94bb1eada192487b9034e742f8b75#8c1410c8c8d94bb1eada192487b9034e742f8b75"
dependencies = [
"bitflags",
"cfg-if",
@@ -3523,6 +3524,7 @@ dependencies = [
[[package]]
name = "system-configuration"
version = "0.4.0"
+source = "git+https://github.com/mullvad/system-configuration-rs#5df2d065fa6c40a75f4f93b8a1db598abfc16743"
dependencies = [
"bitflags",
"core-foundation",
@@ -3543,6 +3545,7 @@ dependencies = [
[[package]]
name = "system-configuration-sys"
version = "0.4.1"
+source = "git+https://github.com/mullvad/system-configuration-rs#5df2d065fa6c40a75f4f93b8a1db598abfc16743"
dependencies = [
"core-foundation-sys",
"libc 0.2.137",
diff --git a/talpid-routing/Cargo.toml b/talpid-routing/Cargo.toml
index f3b9f5b9cf..00181a2e81 100644
--- a/talpid-routing/Cargo.toml
+++ b/talpid-routing/Cargo.toml
@@ -28,14 +28,14 @@ netlink-sys = "0.8.3"
[target.'cfg(target_os = "macos")'.dependencies]
tokio-stream = { version = "0.1", features = ["io-util"] }
-nix = { path = "../../src/nix-rs", feautres = ["socket"] }
+nix = { git = "https://github.com/mullvad/nix", rev = "8c1410c8c8d94bb1eada192487b9034e742f8b75", feautres = ["socket"] }
libc = "0.2"
bitflags = "1.2"
talpid-time = { path = "../talpid-time" }
# TODO: use real release before merging to master
-system-configuration = { path = "../../src/system-configuration-rs/system-configuration/" }
+# system-configuration = { path = "../../src/system-configuration-rs/system-configuration/" }
-# system-configuration = { repo = "https://github.com/mullvad/system-configuration-rs", ref = "5df2d065fa6c40a75f4f93b8a1db598abfc16743" }
+system-configuration = { git = "https://github.com/mullvad/system-configuration-rs", ref = "5df2d065fa6c40a75f4f93b8a1db598abfc16743" }
[target.'cfg(windows)'.dependencies]