Skip to content

v0.2.2

Compare
Choose a tag to compare
@bigmstone bigmstone released this 11 Jan 01:01
· 9 commits to main since this release
Helper Functions Broken

Fixing helper functions. These were broken becasue of the use of
`blocking_send` for tokio channels. Ultimately the lua functions are
executied within the async tokio context but the compiler has no way to
know this. So you can't use await inside a non-async function but
blocking inside the async context will fail. So you must spawn out a new
async task and await the async send for this to work properly.