johanhelsing / matchbox

Painless peer-to-peer WebRTC networking for rust wasm (and native!)
Apache License 2.0
879 stars 72 forks source link

Fix new warnings in rust 1.77 #443

Closed johanhelsing closed 6 months ago

johanhelsing commented 6 months ago

After rust 1.77 we started getting warnings about an unused task handle. Looking at previous code, I'm pretty sure we take ownership because we don't want to drop the task before the socket, and we also want to be able to drop the task when we want to.

Fixes: #437