notify icon indicating copy to clipboard operation
notify copied to clipboard

🔭 Cross-platform filesystem notification library for Rust.

Results 170 notify issues
Sort by recently updated
recently updated
newest added

`notify` currently asks for `windows 0.48.0`, which prevents Cargo from using newer version of the crate. The only reason to stay on `windows 0.48.0` is that it's the last version...

Support watching the same inode through multiple paths. As a single change event can now refer to multiple paths, use "path groups" for renames to differentiate sources and destinations. Fixes...

#### System details - OS/Platform name and version: Linux 6.5.0 - Ubuntu 22.04.3 - Rust version (if building from source): `rustc --version`: `rustc 1.75.0-nightly (0f44eb32f 2023-11-09)` - Notify version (or...

Hey, I just searched for a crate that reads out file ids for linux and windows and found the file-id crate. When viewing the crate on https://crates.io/crates/file-id the page shows...

- Raise MSRV to 1.72 - Remove internal use of crossbeam because `std::sync::mpsc::Sender` implements `Sync` since version 1.72, so there is no need for crossbeam anymore - Specify dependencies in...

Prevents ugly surprises when using notify-types in a wasm environment. I screwed up a bit and this PR is based on my previous on (#567).

This feature restores the serialization behavior of notify 6. CC: @passcod I screwed up a bit and this PR is based on my previous on (#567).

Move the DebouncedEvent from notify-debouncer-full to notify-types.

#### System details - OS/Platform name and version: Mac OS 14.2.1 - Rust version (if building from source): `rustc --version`: 1.7.6 - Notify version (or commit hash if building from...

Thank you for the wonderful crate. I think it would make sense if one was able to unwatch paths, after having watched a parent path. e.g.: ``` watcher.watch("/") assert!(watcher.unwatch("/foo").is_ok()) ```...