forked from notify-rs/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (44 loc) · 1.21 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
[package]
name = "notify"
version = "5.0.0-pre.2"
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"]
authors = [
"Félix Saparelli <[email protected]>",
"Daniel Faust <[email protected]>"
]
edition = "2018"
exclude = ["/.travis.yml", "/clippy.toml"]
[badges]
travis-ci = { repository = "passcod/notify", branch = "main" }
[dependencies]
anymap = "0.12.1"
bitflags = "1.0.4"
crossbeam-channel = "0.3.8"
filetime = "0.2.6"
libc = "0.2.4"
serde = { version = "1.0.89", features = ["derive"], optional = true }
walkdir = "2.0.1"
chashmap = "2.2.2"
[target.'cfg(target_os="linux")'.dependencies]
inotify = { version = "0.7", default-features = false }
mio = "0.6.15"
mio-extras = "2.0.5"
[target.'cfg(target_os="macos")'.dependencies]
fsevent = "1.0.1"
fsevent-sys = "2"
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.1"
winapi = "0.3.5"
[dev-dependencies]
serde_json = "1.0.39"
tempdir = "0.3.4"
[features]
timing_tests = []
manual_tests = []