Félix Saparelli

Results 105 issues of Félix Saparelli

To enable this API: ```rust for event in &watcher { // ... } ``` Explicitly available with `.iter()` as idiomatic.

A-enhancement
Z-needs info

We're allocating a _lot_ of `PathBuf`s all over the place (often by cloning). Reducing this would improve performance for Notify's runtime. Some notes: - We probably want to own them....

A-enhancement

From the PollWatcher code: - [x] Populate mtimes before loop, and then handle creation events (done in #88, released in v3.0.0) - [x] Handle deletion events (done in #88, released...

A-enhancement
Z-needs implementation

The below is saved as a historical document, but **many** things are incorrect now. The best place to see where this is at is the [`next` branch](https://github.com/passcod/notify/tree/next#status) and other issues...

This is a prelim to having actual integration testing

From #295. Globs do this because the glob engine takes care of it, but Exact patterns don't go through glob. In the interest of having portable filters, Exacts should either...

bug

**Is your feature request related to a problem? Please describe.** Using starship as my prompt it's nice that I have how long a command took printed out. If I use...

new feature

**Is your feature request related to a problem? Please describe.** We'd like to experiment with different native backends: - FSEvent (default) and Kqueue on Mac - Inotify (default) and Fanotify...

new feature

Sometimes there are so many events that we overflow the ENV. Omitting meta events is a workaround, but there's a more fundamental issue here. - Write events to a file...

new feature
need info