rs-async-log-watcher
Async log watcher using tokio::fs (not 'truly' async like io_uring as tokio uses worker threads to handle async fs io operations).
Handles file deletion without crashing somewhat nicely. As long as there is a file in the providade path, it should work (even if the file is deleted and recreated after some time). If you need more functionaly you probably should take a look at notify and implement it yourself using this library.
Compatible with Unix/Windows. I do not have benchmarks (and theres a lot of possible improvements), but everything should be pretty resource efficient. It should be possible to spawn thousand of log watchers without worrying to much about it (tokio can manage the blocking threads very well).
Examples
TL;DR
async