diff --git a/Cargo.lock b/Cargo.lock index 7ac79b89..c6eda0ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -438,15 +438,6 @@ version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" -[[package]] -name = "memoffset" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" -dependencies = [ - "autocfg", -] - [[package]] name = "miniz_oxide" version = "0.8.8" @@ -487,15 +478,13 @@ dependencies = [ [[package]] name = "nix" -version = "0.26.4" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" +checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.9.1", "cfg-if", "libc", - "memoffset", - "pin-utils", ] [[package]] diff --git a/crates/term_input/Cargo.toml b/crates/term_input/Cargo.toml index e975ed83..0644c3bb 100644 --- a/crates/term_input/Cargo.toml +++ b/crates/term_input/Cargo.toml @@ -11,7 +11,7 @@ edition = "2024" libc = "0.2" log = "0.4" mio = "1.0" -nix = "0.26" +nix = { version = "0.27", features = ["fs"] } term_input_macros = { path = "../term_input_macros" } tokio = { version = "1.17", default-features = false, features = ["net", "rt"] } tokio-stream = "0.1"