log-reader
A Rust library that provides real-time streaming of file contents, monitoring files for changes and emitting new content as an async stream.
Usage
watch_log(path, separator)
Creates a stream that watches a file for new content.
path- File path to monitorseparator- Content separator (defaults to newline)
Returns a Stream of new content from the file.
Example
use watch_log;
use StreamExt;
async