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
49 lines (47 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
49 lines (47 loc) · 1.36 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
[workspace]
resolver = "2"
members = [
"notify",
"notify-types",
"notify-debouncer-mini",
"notify-debouncer-full",
"file-id",
"examples",
]
exclude = [
"examples/hot_reload_tide", # excluded until https://github.com/rustsec/rustsec/issues/501 is resolved
]
[workspace.package]
rust-version = "1.90"
homepage = "https://github.com/notify-rs/notify"
repository = "https://github.com/notify-rs/notify.git"
edition = "2024"
[workspace.dependencies]
bitflags = "2.7.0"
crossbeam-channel = "0.5.0"
criterion = "0.7.0"
flume = "0.11.1"
deser-hjson = "2.2.4"
tracing-subscriber = "0.3.20"
rolldown-file-id = { version = "0.2.4", path = "file-id" }
fsevent-sys = "4.0.0"
futures = "0.3.30"
inotify = { version = "0.11.0", default-features = false }
insta = "1.34.0"
kqueue = "1.1.1"
libc = "0.2.4"
tracing = "0.1.41"
mio = { version = "1.0", features = ["os-ext"] }
web-time = "1.1.0"
rolldown-notify = { version = "9.1.0", path = "notify" }
rolldown-notify-debouncer-full = { version = "0.7.1", path = "notify-debouncer-full" }
rolldown-notify-debouncer-mini = { version = "0.8.1", path = "notify-debouncer-mini" }
rolldown-notify-types = { version = "2.0.1", path = "notify-types" }
pretty_assertions = "1.3.0"
rstest = "0.26.0"
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"
tempfile = "3.10.0"
trash = "5.2.2"
walkdir = "2.4.0"
windows-sys = "0.61.2"