Files
notify/Cargo.toml
T
2023-05-15 15:43:19 +02:00

48 lines
1.2 KiB
TOML

[workspace]
members = [
"notify",
"notify-debouncer-mini",
"notify-debouncer-refined",
"file-id",
"examples",
#"examples/hot_reload_tide" until https://github.com/rustsec/rustsec/issues/501 is resolved
]
exclude = ["examples/hot_reload_tide"]
[workspace.dependencies]
bitflags = "2.2.1"
crossbeam-channel = "0.5.0"
deser-hjson = "1.1.1"
file-id = { path = "file-id" }
filetime = "0.2.6"
fsevent-sys = "4.0.0"
futures = "0.3.0"
inotify = { version = "0.9.0", default-features = false }
kqueue = "1.0.4"
libc = "0.2.4"
mio = { version = "0.8.0", features = ["os-ext"] }
mock_instant = "0.3.0"
nix = "0.26.2"
notify = { path = "notify" }
notify-debouncer-mini = { path = "notify-debouncer-mini" }
notify-debouncer-refined = { path = "notify-debouncer-refined" }
parking_lot = "0.12.1"
pretty_assertions = "1.3.0"
rand = "0.8.5"
rstest = "0.17.0"
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"
tempfile = "3.5.0"
walkdir = "2.2.2"
winapi-util = "0.1.5"
windows-sys = { version = "0.48.0", features = [
"Win32_System_Threading",
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_WindowsProgramming",
"Win32_System_IO",
] }