diff options
| -rw-r--r-- | Cargo.lock | 3 | ||||
| -rw-r--r-- | talpid-routing/Cargo.toml | 6 |
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] |
