forked from notify-rs/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (68 loc) · 1.79 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
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
[package]
name = "notify"
version = "2.5.5"
authors = [
"Félix Saparelli <me@passcod.name>",
"Antti Keränen <detegr@gmail.com>",
"Gilbert Röhrbein <gilbert@ifsr.de>",
"Jorge Israel Peña <jorge.israel.p@gmail.com>",
"Michael Maurizi <michael.maurizi@gmail.com>",
"Pierre Baillet <oct@zoy.org>",
"ShuYu Wang <andelf@gmail.com>",
"Jimmy Lu <gongchuo.lu@gmail.com>",
"Francisco Giordano <frangio.1@gmail.com>",
"Jake Kerr",
"Ty Overby <ty@pre-alpha.com>",
"John Quigley <veggieburritox@gmail.com>"
]
description = "Cross-platform filesystem notification library"
homepage = "https://github.com/passcod/rsnotify"
repository = "https://github.com/passcod/rsnotify.git"
readme = "README.md"
license = "CC0-1.0"
keywords = [
"events",
"filesystem",
"notify",
"watch",
]
[dependencies]
bitflags = "^0.4.0"
libc = "^0.2.4"
log = "^0.3.4"
time = "^0.1.34"
filetime = "^0.1.9"
walkdir = "^0.1.5"
[target.x86_64-unknown-linux-gnu.dependencies]
inotify = "^0.1.12"
mio = "^0.5.0"
[target.i686-unknown-linux-gnu.dependencies]
inotify = "^0.1.12"
mio = "^0.5.0"
[target.x86_64-unknown-linux-musl.dependencies]
inotify = "^0.1.12"
mio = "^0.5.0"
[target.i686-unknown-linux-musl.dependencies]
inotify = "^0.1.12"
mio = "^0.5.0"
[target.i686-apple-darwin.dependencies]
fsevent = "^0.2.11"
fsevent-sys = "^0.1.3"
[target.x86_64-apple-darwin.dependencies]
fsevent = "^0.2.11"
fsevent-sys = "^0.1.3"
[target.i686-pc-windows-gnu.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"
[target.x86_64-pc-windows-gnu.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"
[target.i686-pc-windows-msvc.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"
[target.x86_64-pc-windows-msvc.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"
[dev-dependencies]
tempfile = "^2.0.1"
tempdir = "^0.3.4"