On 24 October 2012 08:41, [email protected] <[email protected]> wrote: > AFAIK, rust is not going to support traditional socket handling, everything > is going to go over libuv, is this statement correct?
Rust will (and already does) support blocking IO, it just won't try to automatically make it look non-blocking (like Go does). So you can use sockets if you wish, but you have all the usual problems of blocking IO. _______________________________________________ Rust-dev mailing list [email protected] https://mail.mozilla.org/listinfo/rust-dev
