1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -66,22 +66,10 @@
version = "3.10.0"
[features]
-default = ["macos_fsevent"]
-macos_fsevent = ["fsevent-sys"]
-macos_kqueue = [
- "kqueue",
- "mio",
-]
+default = []
serde = ["notify-types/serde"]
serialization-compat-6 = ["notify-types/serialization-compat-6"]
-[target."cfg(any(target_os=\"freebsd\", target_os=\"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))".dependencies.kqueue]
-version = "1.1.1"
-
-[target."cfg(any(target_os=\"freebsd\", target_os=\"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))".dependencies.mio]
-version = "1.0"
-features = ["os-ext"]
-
[target."cfg(any(target_os=\"linux\", target_os=\"android\"))".dependencies.inotify]
version = "0.11.0"
default-features = false
@@ -90,32 +78,3 @@
version = "1.0"
features = ["os-ext"]
-[target."cfg(target_os = \"windows\")".dev-dependencies.trash]
-version = "5.2.2"
-
-[target."cfg(target_os=\"macos\")".dependencies.bitflags]
-version = "2.7.0"
-
-[target."cfg(target_os=\"macos\")".dependencies.fsevent-sys]
-version = "4.0.0"
-optional = true
-
-[target."cfg(target_os=\"macos\")".dependencies.kqueue]
-version = "1.1.1"
-optional = true
-
-[target."cfg(target_os=\"macos\")".dependencies.mio]
-version = "1.0"
-features = ["os-ext"]
-optional = true
-
-[target."cfg(windows)".dependencies.windows-sys]
-version = "0.60.1"
-features = [
- "Win32_System_Threading",
- "Win32_Foundation",
- "Win32_Storage_FileSystem",
- "Win32_Security",
- "Win32_System_WindowsProgramming",
- "Win32_System_IO",
-]
|