Pavel Kurdikov

Results 6 issues of Pavel Kurdikov

If fsevents machinery provides an event with `ITEM_REMOVED | ITEM_RENAMED` the removed event will be emmitted before the renamed ones It'll be less confusing if a `Remove` event will be...

```rust watcher.watch(path).unwrap(); std::fs::create_dir_all(path.join("1/2/3/4/5/6/7/8/9/10")).unwrap() ``` The code above raises only the single event: `Create` for `path.join("1")` I think, it's because the creation is done faster, than we add a new watch....

https://github.com/notify-rs/notify/pull/723#pullrequestreview-3380381819 @JohnTitor I totally agree, but I think it should be a maintainers' decision. In my opinion, I don't get why people expect to be able to use an ancient...

The feature to add / remove paths to watch in batch was introduced in #692 but there was a problem with the implementation: if you drop the instance without `commit`...

This PR fixes #709. Full information about the bug are described in the documentation for the `remove_single_descriptor` method. The main problem was, that we tried to remove descriptor from the...

@dfaust @JohnTitor I want to add some breaking changes but I don't know the policy about that. It's about the new feature `PathsMut` introduced in #692 In the current implementation...