read a file async, will log last read seek and skip to last read when in a loop
Basic Usage
```rust use blocking_reader::file::FileReadExt; use std::time::Duration;
async fn main() { tracingsubscriber::fmt::init(); let filepath = "/var/log/syslog"; loop { let results = filepath .blockingreadwithtimelimit(&vec![], Duration::fromsecs(30)) .await .unwrap(); if results.len() < 100 { println!("{results:?}"); }
tokio::time::sleep(Duration::from_secs(1)).await;
}
} ```