notify-debouncer-full

Crates.ionotify-debouncer-full
lib.rsnotify-debouncer-full
version0.3.1
sourcesrc
created_at2023-05-17 00:13:51.925415
updated_at2023-08-21 09:32:51.54814
descriptionnotify event debouncer optimized for ease of use
homepagehttps://github.com/notify-rs/notify
repositoryhttps://github.com/notify-rs/notify.git
max_upload_size
id866454
size84,394
watchmakers (github:notify-rs:watchmakers)

documentation

https://docs.rs/notify-debouncer-full

README

Notify Debouncer Full

ยป Docs

A debouncer for notify that is optimized for ease of use.

  • Only emits a single Rename event if the rename From and To events can be matched
  • Merges multiple Rename events
  • Takes Rename events into account and updates paths for events that occurred before the rename event, but which haven't been emitted, yet
  • Optionally keeps track of the file system IDs all files and stiches rename events together (FSevents, Windows)
  • Emits only one Remove event when deleting a directory (inotify)
  • Doesn't emit duplicate create events
  • Doesn't emit Modify events after a Create event

Features

  • crossbeam enabled by default, for crossbeam channel support.

    This may create problems used in tokio environments. See #380.
    Use someting like the following to disable it.

    notify-debouncer-full = { version = "*", default-features = false }
    

    This also passes through to notify as crossbeam-channel feature.

Commit count: 761

cargo fmt