File: 2002_inotify.patch

package info (click to toggle)
rust-smol 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 344 kB
  • sloc: perl: 258; python: 148; makefile: 5; sh: 1
file content (16 lines) | stat: -rw-r--r-- 502 bytes parent folder | download
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"