:wave: Quick question: do y'all plan on releasing Wasmtime 4.0 before the Holiday break?
I'm debating whether I should release a new version of the Ruby gem now, or wait for 4.0 to be out.
I believe the plan is to go ahead with the 4.0 release this week; I think @Rainy Sinclair is the shepherd.
Fantastic, thanks Peter.
FYI: it looks like Rainy pulled the trigger and the release process has started
release is in progress! Sorry for the delay on that.
Jimmy Bourassa has marked this topic as resolved.
Sorry didn't know where to ask but I was just wondering if we have socket support in wasmtime yet?
@Cwasi4wasm, I think the answer is "yes," wasi-sockets has been implemented in Wasmtime for some time (see, e.g., this PR by @Dan Gohman). You can also see what sock_*
functions are available in the docs.
Awesome thank you! I tried using Tcpstream::connect but don't think it's working. I assume it's because of how it works since I need preopened sockets
Indeed. You need to preopen the socket and then use TcpStream::from_raw_fd.
Awesome thank you! Does this mean the wasm will have to know before hand where it can communicate? If I need to add a preopened socket that is
Yeah, that is the intention.
Last updated: Nov 22 2024 at 16:03 UTC