forked from notify-rs/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.1 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
[package]
name = "rolldown-notify-debouncer-mini"
version = "0.8.6"
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
[lib]
name = "notify_debouncer_mini"
[features]
default = ["macos_fsevent"]
serde = ["rolldown-notify-types/serde"]
crossbeam-channel = ["dep:crossbeam-channel", "rolldown-notify/crossbeam-channel"]
flume = ["dep:flume", "rolldown-notify/flume"]
macos_fsevent = ["rolldown-notify/macos_fsevent"]
macos_kqueue = ["rolldown-notify/macos_kqueue"]
serialization-compat-6 = ["rolldown-notify/serialization-compat-6"]
[lints]
workspace = true
[dependencies]
rolldown-notify.workspace = true
rolldown-notify-types.workspace = true
crossbeam-channel = { workspace = true, optional = true }
flume = { workspace = true, optional = true }
tracing.workspace = true
tempfile.workspace = true