| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-10-01 | Remove iotest macro | Aaron Turon | -4/+12 | |
| This commit removes the `iotest!` macro from `std::io`. The macro was primarily used to ensure that all io-related tests were run on both libnative and libgreen/librustuv. However, now that the librustuv stack is being removed, the macro is no longer needed. See the [runtime removal RFC](https://github.com/rust-lang/rfcs/pull/230) for more context. [breaking-change] | ||||
| 2014-09-30 | Fix libstd | Steven Fackler | -1/+1 | |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -2/+2 | |
| 2014-08-01 | Fix misspelled comments. | Joseph Crail | -1/+1 | |
| 2014-06-06 | std: Deal with fallout of rtio changes | Alex Crichton | -2/+29 | |
| 2014-05-08 | Handle fallout in io::net::addrinfo, io::process, and rt::rtio | Kevin Ballard | -3/+3 | |
| API Changes: - get_host_addresses() returns IoResult<Vec<IpAddr>> - Process.extra_io is Vec<Option<io::PipeStream>> | ||||
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -9/+9 | |
| 2014-03-30 | Removed deprecated functions `map` and `flat_map` for vectors and slices. | Marvin Löbel | -2/+3 | |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -1/+1 | |
| Closes #2569 | ||||
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -1/+1 | |
| Closes #12702 | ||||
| 2014-02-28 | std: Improve some I/O documentation | Alex Crichton | -0/+2 | |
| This lowers the #[allow(missing_doc)] directive into some of the lower modules which are less mature. Most I/O modules now require comprehensive documentation. | ||||
| 2014-02-03 | std: Fixing all documentation | Alex Crichton | -8/+0 | |
| * Stop referencing io_error * Start changing "Failure" sections to "Error" sections * Update all doc examples to work. | ||||
| 2014-02-03 | std: Fix tests with io_error usage | Alex Crichton | -1/+1 | |
| 2014-02-03 | std: Remove io::io_error | Alex Crichton | -3/+4 | |
| * All I/O now returns IoResult<T> = Result<T, IoError> * All formatting traits now return fmt::Result = IoResult<()> * The if_ok!() macro was added to libstd | ||||
| 2014-01-30 | Remove unused imports. | OGINO Masanori | -4/+0 | |
| Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com> | ||||
| 2014-01-26 | Removed all instances of XXX in preparation for relaxing of FIXME rule | Salem Talha | -1/+1 | |
| 2014-01-24 | libstd: Use iotest! for for get_host_addresses. | Luqman Aden | -5/+11 | |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -1/+1 | |
| 2013-12-24 | std: Expose that LocalIo may not always be available | Alex Crichton | -10/+1 | |
| It is not the case that all programs will always be able to acquire an instance of the LocalIo borrow, so this commit exposes this limitation by returning Option<LocalIo> from LocalIo::borrow(). At the same time, a helper method LocalIo::maybe_raise() has been added in order to encapsulate the functionality of raising on io_error if there is on local I/O available. | ||||
| 2013-12-10 | librustuv: Change `with_local_io` to use RAII. | Patrick Walton | -11/+10 | |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -2/+2 | |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -0/+128 | |
