head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.08.07.09.18.26; author pin; state Exp; branches; next ; commitid Zzr2BnoDtWekCGQG; desc @@ 1.1 log @devel/gitnr: update to 0.3.0 v0.3.0 What's New - Shell completions — new completions command to generate shell completions for bash, zsh, fish, elvish, and powershell (#15) - Linux arm64 binary — pre-built aarch64 binary now included in releases (#13) - Homebrew support — brew install gitnr via homebrew-core (#19) Fixes & Maintenance - Fixed CLI showing an error instead of help when run without a subcommand - Resolved 4 dependency security vulnerabilities (openssl, idna, hashbrown) - Updated all dependencies to latest compatible versions - Fixed clippy warnings for latest stable Rust toolchain v0.2.2 - Updated dependencies @ 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; @