From f2e4c9de3ac8e5a19738a863a4cd53e100217d0a Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Mon, 5 Feb 2024 10:32:10 -0300 Subject: [PATCH] chore: remove nix workaround following zbus release (#8773) --- core/tauri-runtime-wry/Cargo.toml | 3 --- core/tauri/Cargo.toml | 5 +---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index c4459f640..299582d46 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -34,9 +34,6 @@ gtk = { version = "0.18", features = [ "v3_24" ] } webkit2gtk = { version = "=2.0", features = [ "v2_38" ] } percent-encoding = "2.1" -[target."cfg(unix)".dependencies] -nix = { version = "0.26.0", default-features = false, features = [ "user", "socket", "uio" ] } - [target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies] cocoa = "0.25" diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 2b98e5ec5..39c482cb2 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -37,7 +37,7 @@ targets = [ ] [package.metadata.cargo-udeps.ignore] -normal = [ "reqwest", "nix" ] +normal = [ "reqwest" ] build = [ "tauri-build" ] development = [ "quickcheck_macros" ] @@ -88,9 +88,6 @@ cocoa = "0.25" objc = "0.2" window-vibrancy = "0.4" -[target."cfg(unix)".dependencies] -nix = { version = "0.26.0", default-features = false, features = [ "user", "socket", "uio" ] } - [target."cfg(windows)".dependencies] webview2-com = "0.28" window-vibrancy = "0.4"