If I create an async function in my dynamically loaded library, stabbify it with
#[stabby::stabby]
#[stabby::export]
and await for it in the main, the function panics on the calls to tokio::spawn or tokio::sleep.
I can do an await on another async in this library function though.
tokio::runtime::Handle::try_current() invoked from the library returns an error.
What is the right way to do async in this arrangement?