1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: relax dependency on crate inotify
Needed to match Debian-packaged inotify v0.9.6
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2022-07-15
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -47,6 +47,6 @@
url = "2"
[target.'cfg(target_os = "linux")'.dev-dependencies]
-inotify = { version = "0.10", default-features = false }
+inotify = { version = ">= 0.9, < 0.11", default-features = false }
nix = "0.24"
timerfd = "1"
|