head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.08.07.09.30.45; author pin; state Exp; branches; next ; commitid 8fjP26k8JcLxGGQG; desc @@ 1.1 log @textproc/inlyne: update to 0.5.3 Deprecations - Deprecate implicit inlyne viewing in favor of inlyne view ([#466]) Releases - Add ARM linux to the set of prebuilt release artifacts (#455) Fixes - Downgrade copypasta to fix wayland-client version issues (#462) - Update taffy to fix errant rendering hangs (#459 #467) - Correctly track relative files when navigating (#465) Internal - Migrate YAML parsing from serde_yaml -> yaml_serde (#454) - Remove codecov.io CI workflow (#457) - Fix tests on 32-bit targets (#460 #468) - Update CI actions (#463) - Simplify config error handling code (#469) @ text @$NetBSD$ Fix type_of_udata group for newer libc. --- ../vendor/nix-0.24.3/src/sys/event.rs.orig 2026-08-07 07:30:11.300092617 +0000 +++ ../vendor/nix-0.24.3/src/sys/event.rs @@@@ -19,13 +19,11 @@@@ pub struct KEvent { #[cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "ios", target_os = "macos", - target_os = "openbsd"))] + target_os = "netbsd", target_os = "openbsd"))] type type_of_udata = *mut libc::c_void; #[cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "ios", target_os = "macos"))] type type_of_data = intptr_t; -#[cfg(any(target_os = "netbsd"))] -type type_of_udata = intptr_t; #[cfg(any(target_os = "netbsd", target_os = "openbsd"))] type type_of_data = i64; @