File: 2001_no_macos.patch

package info (click to toggle)
rust-linemux 0.3.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 260 kB
  • sloc: sh: 25; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 687 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: avoid macos-only feature "macos_kqueue" for crate notify
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2023-08-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -22,7 +22,7 @@
 
 [dependencies]
 futures-util = { version = "0.3", default-features = false, features = ["std"] }
-notify = { version = "8", default-features = false, features = ["macos_kqueue", "crossbeam-channel"] }
+notify = { version = "8", default-features = false, features = ["crossbeam-channel"] }
 pin-project-lite = "0.2"
 tokio = { version = "1", features = ["fs", "io-util", "sync", "time"], optional = true }