| Age | Commit message (Expand) | Author | Lines |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -2/+2 |
| 2013-11-18 | Allow piped stdout/stderr use uv_tty_t | Alex Crichton | -0/+1 |
| 2013-11-13 | Implement native::IoFactory | Alex Crichton | -9/+17 |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -12/+12 |
| 2013-11-12 | Implemented a ProcessExit enum and helper methods to std::rt::io::process for... | Matthew Iselin | -2/+2 |
| 2013-11-10 | Fall back from uv tty instances more aggressively | Alex Crichton | -1/+0 |
| 2013-11-10 | Rework the idle callback to have a safer interface | Alex Crichton | -3/+1 |
| 2013-11-10 | Add bindings to uv's utime function | Alex Crichton | -0/+2 |
| 2013-11-10 | Start migrating stream I/O away from ~fn() | Alex Crichton | -2/+0 |
| 2013-11-10 | Remove usage of ~fn() from uv async/idle | Alex Crichton | -3/+7 |
| 2013-11-03 | Fill out the remaining functionality in io::file | Alex Crichton | -5/+18 |
| 2013-11-03 | Remove all blocking std::os blocking functions | Alex Crichton | -2/+5 |
| 2013-11-03 | Modify IoFactory's fs_mkdir, and add fs_rename | Alex Crichton | -1/+2 |
| 2013-10-30 | Make Writer::flush a no-op default method | Alex Crichton | -1/+0 |
| 2013-10-25 | Enhance timers to create ports | Alex Crichton | -1/+3 |
| 2013-10-24 | Remove the 'callback_ms' function from EventLoop | Alex Crichton | -1/+0 |
| 2013-10-24 | Another round of test fixes and merge conflicts | Alex Crichton | -1/+15 |
| 2013-10-24 | wrapping libuv signal for use in Rust | Do Nhat Minh | -0/+6 |
| 2013-10-24 | Move stdin to using libuv's pipes instead of a tty | Alex Crichton | -0/+1 |
| 2013-10-24 | Move as much I/O as possible off of native::io | Alex Crichton | -1/+2 |
| 2013-10-24 | Migrate the last typedefs to ~Trait in rtio | Alex Crichton | -9/+4 |
| 2013-10-24 | Don't attempt to export uv functions directly | Alex Crichton | -1/+0 |
| 2013-10-24 | Remove IoFactoryObject for ~IoFactory | Alex Crichton | -6/+27 |
| 2013-10-24 | Remove rt::io::support | Alex Crichton | -7/+6 |
| 2013-10-24 | Migrate Rtio objects to true trait objects | Alex Crichton | -26/+20 |
| 2013-10-24 | Move rt::io::stdio from FileStream to a TTY | Alex Crichton | -0/+11 |
| 2013-10-24 | Remove unbound pipes from io::pipe | Alex Crichton | -2/+0 |
| 2013-10-24 | Finish implementing io::net::addrinfo | Alex Crichton | -1/+3 |
| 2013-10-24 | Implement io::net::unix | Alex Crichton | -1/+18 |
| 2013-10-23 | Removed Unnecessary comments and white spaces #4386 | reedlepee | -1/+0 |
| 2013-10-23 | Making fields in std and extra : private #4386 | reedlepee | -1/+2 |
| 2013-09-18 | Implement process bindings to libuv | Alex Crichton | -0/+19 |
| 2013-09-17 | std: remove RtioStream | Jeff Olson | -5/+0 |
| 2013-09-16 | std: remove impl'd/commented-out fstat signatures | Jeff Olson | -1/+0 |
| 2013-09-16 | std: bind uv_fs_readdir(), flesh out DirectoryInfo and docs/cleanup | Jeff Olson | -0/+2 |
| 2013-09-16 | std: adding file::{stat,mkdir,rmdir}, FileInfo and FileReader/FileWriter | Jeff Olson | -0/+2 |
| 2013-09-16 | std/rt: in-progress file io work | Jeff Olson | -1/+8 |
| 2013-09-05 | std::rt: Add get_host_addresses function | Brian Anderson | -0/+1 |
| 2013-06-23 | Split out starting a listener from accepting incoming connections. | Eric Reed | -0/+5 |
| 2013-08-29 | Revert "auto merge of #8645 : alexcrichton/rust/issue-6436-run-non-blocking, ... | Brian Anderson | -19/+3 |
| 2013-08-27 | Implement process bindings to libuv | Alex Crichton | -3/+19 |
| 2013-08-22 | std: put FileMode/Access->whence-mask in uvio, open/unlink as fns in file:: | Jeff Olson | -1/+2 |
| 2013-08-22 | std: slight refactor on UvFilestream seek behavior, pre-seek-refactor | Jeff Olson | -1/+2 |
| 2013-08-22 | std: rework file io.. support [p]read,[p]write, impl seek/tell + more tests | Jeff Olson | -5/+10 |
| 2013-08-22 | std: rt::io::file::FileStream fleshed out.. needs more work.. see extended | Jeff Olson | -2/+3 |
| 2013-08-22 | std: CRUD file io bindings in uvio, fs_open()/unlink() in IoFactory + test | Jeff Olson | -0/+23 |
| 2013-08-20 | auto merge of #8631 : anasazi/rust/homing-io, r=brson | bors | -1/+1 |
| 2013-08-19 | Make IO thread-safe. | Eric Reed | -2/+2 |
| 2013-08-19 | Homed UDP sockets | Eric Reed | -1/+1 |
| 2013-08-16 | Moved the logic for a pausible idle callback into a new type - PausibleIdleCa... | toddaaro | -5/+8 |