From cf80ca7a665b252dbe93234982153f80c261231c Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Wed, 21 Jan 2026 17:05:49 +0100 Subject: [PATCH 1/2] Update `windows-sys` to `>= 0.60, <= 0.61` and `linux-raw-sys` to 0.12.1 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 89fdcb5..8592c66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,10 +23,10 @@ tokio = { version = "1", features = ["rt", "macros", "io-util", "rt-multi-thread [target.'cfg(any(target_os="linux", target_os="android"))'.dependencies] rustix = { version = "1.0.1", features = ["fs", "event", "net", "time", "mm"] } -linux-raw-sys = { version = "0.9.2", features = ["ioctl"] } +linux-raw-sys = { version = "0.12.1", features = ["ioctl"] } [target.'cfg(target_os="windows")'.dependencies] -windows-sys = { version = "0.60.2", features = ["Win32_Devices_Usb", "Win32_Devices_DeviceAndDriverInstallation", "Win32_Foundation", "Win32_Devices_Properties", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_IO", "Win32_System_Registry", "Win32_System_Com"] } +windows-sys = { version = ">= 0.60, <= 0.61", features = ["Win32_Devices_Usb", "Win32_Devices_DeviceAndDriverInstallation", "Win32_Foundation", "Win32_Devices_Properties", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_IO", "Win32_System_Registry", "Win32_System_Com"] } [target.'cfg(target_os="macos")'.dependencies] core-foundation = "0.10.1" From 85eafb30ae58372c76abfa620910ad0b7ca63aee Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Sat, 24 Jan 2026 17:11:00 -0700 Subject: [PATCH 2/2] Allow linux-raw-sys 0.11, same as rustix 1.1.3 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8592c66..3c5a911 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ tokio = { version = "1", features = ["rt", "macros", "io-util", "rt-multi-thread [target.'cfg(any(target_os="linux", target_os="android"))'.dependencies] rustix = { version = "1.0.1", features = ["fs", "event", "net", "time", "mm"] } -linux-raw-sys = { version = "0.12.1", features = ["ioctl"] } +linux-raw-sys = { version = ">= 0.11, <= 0.12", features = ["ioctl"] } [target.'cfg(target_os="windows")'.dependencies] windows-sys = { version = ">= 0.60, <= 0.61", features = ["Win32_Devices_Usb", "Win32_Devices_DeviceAndDriverInstallation", "Win32_Foundation", "Win32_Devices_Properties", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_IO", "Win32_System_Registry", "Win32_System_Com"] }