1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: accept newer minor version of crate udev
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2025-09-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -49,7 +49,7 @@
[target.'cfg(target_os="linux")'.dependencies]
glob = "0.3.3" # find block devices in USB syspath
udevrs = { version = "^0.4.0", optional = true }
-udevlib = { package = "udev", version = "^0.8.0", optional = true }
+udevlib = { package = "udev", version = ">= 0.8, <= 0.9", optional = true }
[target.'cfg(target_os="macos")'.dependencies]
core-foundation = "0.10.1"
|