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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.60"
name = "notify"
version = "6.1.1"
authors = [
"Félix Saparelli <me@passcod.name>",
"Daniel Faust <hessijames@gmail.com>",
"Aron Heinecke <Ox0p54r36@t-online.de>",
]
description = "Cross-platform filesystem notification library"
homepage = "https://github.com/notify-rs/notify"
documentation = "https://docs.rs/notify"
readme = "README.md"
keywords = [
"events",
"filesystem",
"notify",
"watch",
]
categories = ["filesystem"]
license = "CC0-1.0"
repository = "https://github.com/notify-rs/notify.git"
resolver = "1"
[dependencies.crossbeam-channel]
version = "0.5.0"
optional = true
[dependencies.filetime]
version = "0.2.22"
[dependencies.libc]
version = "0.2.4"
[dependencies.log]
version = "0.4.17"
[dependencies.serde]
version = "1.0.89"
features = ["derive"]
optional = true
[dependencies.walkdir]
version = "2.2.2"
[dev-dependencies.nix]
version = "0.23.1"
[dev-dependencies.serde_json]
version = "1.0.39"
[dev-dependencies.tempfile]
version = "3.2.0"
[features]
default = [
"macos_fsevent",
"crossbeam-channel",
]
macos_fsevent = ["fsevent-sys"]
macos_kqueue = [
"kqueue",
"mio",
]
manual_tests = []
timing_tests = []
[target."cfg(any(target_os=\"freebsd\", target_os=\"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\"))".dependencies.kqueue]
version = "^1.0.4"
[target."cfg(any(target_os=\"freebsd\", target_os=\"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\"))".dependencies.mio]
version = "0.8"
features = ["os-ext"]
[target."cfg(any(target_os=\"linux\", target_os=\"android\"))".dependencies.inotify]
version = "0.9"
default-features = false
[target."cfg(any(target_os=\"linux\", target_os=\"android\"))".dependencies.mio]
version = "0.8"
features = ["os-ext"]
[target."cfg(target_os=\"macos\")".dependencies.bitflags]
version = "2.3.0"
[target."cfg(target_os=\"macos\")".dependencies.fsevent-sys]
version = "4"
optional = true
[target."cfg(target_os=\"macos\")".dependencies.kqueue]
version = "1.0"
optional = true
[target."cfg(target_os=\"macos\")".dependencies.mio]
version = "0.8"
features = ["os-ext"]
optional = true
|