Merge pull request #180 from ColinFinck/update-windows-sys-and-linux-raw-sys

Update `windows-sys` to `>= 0.60, <= 0.61` and `linux-raw-sys` to 0.12.1
This commit is contained in:
Kevin Mehall 2026-01-24 17:27:38 -07:00 committed by GitHub
commit ac1988f573
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.11, <= 0.12", 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"