You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: drop dep on futures-core, ready! macro is in std
* feat: event loop is now based on async-task
* feat: tcp-echo-server uses tasks, test runner uses wasmtime cli, tcp-listener supports v6
The tcp-echo-server example has been rewritten to spawn the echo part of
each accept into a task, which means it can accept new connections
while other echos are in flight.
The tcp-echo-server test has been rewritten to test that connections can
be accepted while other echoes are in flight.
The tcp-echo-server test has been rewritten to use wasmtime cli as a
process, rather than use wasmtime as a crate. This drops wasmtime from
the dev-dependencies of the workspace, which is good because it was
running a quite out-of-date wasmtime.
Fix up the missing conversions to/from std::net::SocketAddr in
wstd::net::tcp_listener, so that we can send a Display impl of the
listening address from the guest to host, and parse it out in the host
(see get_listening_address)
* README: no longer 100% safe rust
* switch to #![deny(unsafe_code)] at lib level
* refactor block on loop
0 commit comments