forked from maurizi/rsnotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (54 loc) · 1.57 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
[package]
name = "notify"
version = "2.5.1"
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 = "*"
libc = "*"
log = "*"
time = "*"
filetime = "*"
walker = "^1.0.0"
[target.x86_64-unknown-linux-gnu.dependencies.inotify]
version = "^0.1"
[target.x86_64-unknown-linux-musl.dependencies.inotify]
version = "^0.1"
[target.x86_64-apple-darwin.dependencies.fsevent]
version = "^0.2.11"
[target.x86_64-apple-darwin.dependencies.fsevent-sys]
version = "^0.1"
[target.i686-pc-windows-gnu]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[target.x86_64-pc-windows-gnu]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[target.i686-pc-windows-msvc]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[target.x86_64-pc-windows-msvc]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[dev-dependencies]
tempfile = "^1.1.0"
tempdir = "^0.3.4"