-
Notifications
You must be signed in to change notification settings - Fork 222
/
Cargo.toml
59 lines (47 loc) · 1.09 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
[package]
name = "examples"
version = "0.0.0"
publish = false
edition = "2021"
[dev-dependencies]
notify = { workspace = true }
notify-debouncer-mini = { workspace = true }
notify-debouncer-full = { workspace = true }
futures = { workspace = true }
tempfile = { workspace = true }
log = { workspace = true }
env_logger = { workspace = true }
[[example]]
name = "async_monitor"
path = "async_monitor.rs"
[[example]]
name = "monitor_raw"
path = "monitor_raw.rs"
[[example]]
name = "monitor_debounced"
path = "monitor_debounced.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"
[[example]]
name = "pollwatcher_scan"
path = "pollwatcher_scan.rs"
[[example]]
name = "pollwatcher_manual"
path = "pollwatcher_manual.rs"
# specifically in its own sub folder
# to prevent cargo audit from complaining
#[[example]]
#name = "hot_reload_tide"