-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 1.05 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
[package]
name = "notify-debouncer-mini"
version = "0.6.0"
description = "notify mini debouncer for events"
documentation = "https://docs.rs/notify-debouncer-mini"
authors = ["Aron Heinecke <Ox0p54r36@t-online.de>"]
keywords = ["events", "filesystem", "notify", "watch"]
license = "MIT OR Apache-2.0"
readme = "README.md"
rust-version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[features]
default = ["macos_fsevent"]
serde = ["notify-types/serde"]
crossbeam-channel = ["dep:crossbeam-channel", "notify/crossbeam-channel"]
macos_fsevent = ["notify/macos_fsevent"]
macos_kqueue = ["notify/macos_kqueue"]
serialization-compat-6 = ["notify/serialization-compat-6"]
[dependencies]
notify.workspace = true
notify-types.workspace = true
crossbeam-channel = { workspace = true, optional = true }
log.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"] }