Thus far I've always been able to find a mature, decent Rust library (or several) for anything I've wanted to do. However, I'm coming up empty searching for some type of framework for "timed events." I'm talking about something like this:
- You register an "event" (a fn callback most likely) to run at a certain time
- You can control re-running at a regular interval n times on a failure case
An example use-case is SFTP'ing a file at a certain time.
I've written this kind of thing from scratch before and that's certainly possible, but does anything come to mind for anyone?