forked from notify-rs/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (36 loc) · 907 Bytes
/
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
[package]
name = "examples"
version = "0.0.0"
publish = false
edition = "2021"
[dev-dependencies]
notify = { version = "6.0.1", path = "../notify" }
notify-debouncer-mini = { version = "0.3.0", path = "../notify-debouncer-mini" }
notify-debouncer-full = { version = "0.2.0", path = "../notify-debouncer-full" }
futures = "0.3"
tempfile = "3.5.0"
[[example]]
name = "async_monitor"
path = "async_monitor.rs"
[[example]]
name = "monitor_raw"
path = "monitor_raw.rs"
[[example]]
name = "debouncer_mini"
path = "debouncer_mini.rs"
[[example]]
name = "debouncer_mini_custom"
path = "debouncer_mini_custom.rs"
[[example]]
name = "debouncer_full"
path = "debouncer_full.rs"
[[example]]
name = "poll_sysfs"
path = "poll_sysfs.rs"
[[example]]
name = "watcher_kind"
path = "watcher_kind.rs"
# specifically in its own sub folder
# to prevent cargo audit from complaining
#[[example]]
#name = "hot_reload_tide"