diff --git a/Cargo.lock b/Cargo.lock index 5a813af..6efc380 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -235,7 +235,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162" dependencies = [ "dispatch2", - "nix 0.31.2", + "nix 0.31.3", "windows-sys 0.61.2", ] @@ -460,9 +460,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.184" +version = "0.2.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" [[package]] name = "linux-raw-sys" @@ -526,9 +526,9 @@ dependencies = [ [[package]] name = "nix" -version = "0.31.2" +version = "0.31.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3" +checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d" dependencies = [ "bitflags 2.11.0", "cfg-if", @@ -597,7 +597,7 @@ dependencies = [ "anyhow", "clap", "ctrlc", - "nix 0.31.2", + "nix 0.31.3", "oneshot", "osutil_core", "portable-pty", diff --git a/tui/Cargo.toml b/tui/Cargo.toml index 8e70031..22bea07 100644 --- a/tui/Cargo.toml +++ b/tui/Cargo.toml @@ -24,7 +24,7 @@ unicode-width = { version = "0.2.0", default-features = false } osutil_core = { path = "../core" } tree-sitter-bash = { version = "0.25.0", optional = true } tree-sitter-highlight = { version = "0.26.5", optional = true } -nix = { version = "0.31.1", features = [ "user" ] } +nix = { version = "0.31.3", features = [ "user" ] } vt100-ctt = "0.16.0" anyhow = "1.0" which = "8.0"