-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (51 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
65 lines (51 loc) · 1.29 KB
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
[package]
name = "examples"
version = "0.0.0"
publish = false
edition = "2021"
license = "MIT OR Apache-2.0"
[dev-dependencies]
notify = { workspace = true }
notify-debouncer-mini = { workspace = true }
notify-debouncer-full = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
env_logger = { workspace = true }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
tempfile = { workspace = true }
[target.'cfg(target_family = "wasm")'.dev-dependencies]
tempfile = { workspace = true, features = ["nightly"] }
[[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"