forked from notify-rs/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.22 KB
/
Cargo.toml
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
[package]
name = "notify"
version = "4.0.10"
authors = [
"Félix Saparelli <me@passcod.name>",
"Jorge Israel Peña <jorge.israel.p@gmail.com>",
"Michael Maurizi <michael.maurizi@gmail.com>",
"Pierre Baillet <oct@zoy.org>",
"Joe Wilm <joe@jwilm.com>",
"Daniel Faust <hessijames@gmail.com>"
]
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
homepage = "https://github.com/passcod/notify"
repository = "https://github.com/passcod/notify.git"
readme = "README.md"
license = "CC0-1.0"
keywords = ["events", "filesystem", "notify", "watch"]
categories = ["filesystem"]
[badges]
travis-ci = { repository = "passcod/notify", branch = "main" }
maintenance = { status = "passively-maintained" }
[dependencies]
bitflags = "^1.0.4"
libc = "^0.2.4"
filetime = "^0.2.1"
walkdir = "^2.0.1"
[target.'cfg(target_os="linux")'.dependencies]
inotify = { version = "^0.6.1", default-features = false }
mio = "^0.6.15"
mio-extras = "^2.0.5"
[target.'cfg(target_os="macos")'.dependencies]
fsevent = "^0.2.17"
fsevent-sys = "^0.1.3"
[target.'cfg(windows)'.dependencies]
winapi = "^0.3.5"
kernel32-sys = "^0.2.1"
[dev-dependencies]
tempdir = "^0.3.4"
[features]
timing_tests = []
manual_tests = []