| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-10-29 | Register new snapshots | Alex Crichton | -648/+0 | |
| 2013-10-24 | Another round of test fixes and merge conflicts | Alex Crichton | -12/+21 | |
| 2013-10-24 | Remove IoFactoryObject for ~IoFactory | Alex Crichton | -25/+27 | |
| This involved changing a fair amount of code, rooted in how we access the local IoFactory instance. I added a helper method to the rtio module to access the optional local IoFactory. This is different than before in which it was assumed that a local IoFactory was *always* present. Now, a separate io_error is raised when an IoFactory is not present, yet I/O is requested. | ||||
| 2013-10-24 | Remove rt::io::support | Alex Crichton | -51/+33 | |
| This removes the PathLike trait associated with this "support module". This is yet another "container of bytes" trait, so I didn't want to duplicate what already exists throughout libstd. In actuality, we're going to pass of C strings to the libuv APIs, so instead the arguments are now bound with the 'ToCStr' trait instead. Additionally, a layer of complexity was removed by immediately converting these type-generic parameters into CStrings to get handed off to libuv apis. | ||||
| 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-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -1/+1 | |
| Who doesn't like a massive renaming? | ||||
| 2013-10-15 | path2: Adjust the API to remove all the _str mutation methods | Kevin Ballard | -6/+6 | |
| Add a new trait BytesContainer that is implemented for both byte vectors and strings. Convert Path::from_vec and ::from_str to one function, Path::new(). Remove all the _str-suffixed mutation methods (push, join, with_*, set_*) and modify the non-suffixed versions to use BytesContainer. | ||||
| 2013-10-15 | path2: Replace the path module outright | Kevin Ballard | -6/+6 | |
| Remove the old path. Rename path2 to path. Update all clients for the new path. Also make some miscellaneous changes to the Path APIs to help the adoption process. | ||||
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -2/+2 | |
| 2013-09-26 | std: removed some warnings in tests. | Erick Tryzelaar | -6/+5 | |
| 2013-09-26 | std and rustc: Convert users of c_str to use .with_c_str | Erick Tryzelaar | -8/+8 | |
| 2013-09-24 | Stop accepting 'impl ...;', require {} instead | Alex Crichton | -1/+1 | |
| Progress on #7981 | ||||
| 2013-09-16 | std: FsRequest.req_boilerplate() be &mut self | Jeff Olson | -17/+58 | |
| 2013-09-16 | std: correctly pass STDOUT in to naive_print test fn | Jeff Olson | -1/+1 | |
| 2013-09-16 | std: unignore some file io tests that work on windows, now | Jeff Olson | -2/+0 | |
| 2013-09-16 | std: bind uv_fs_readdir(), flesh out DirectoryInfo and docs/cleanup | Jeff Olson | -8/+42 | |
| 2013-09-16 | std: adding file::{stat,mkdir,rmdir}, FileInfo and FileReader/FileWriter | Jeff Olson | -2/+4 | |
| add ignores for win32 tests on previous file io stuff... | ||||
| 2013-09-16 | merge cleanup | Jeff Olson | -1/+2 | |
| 2013-09-16 | std/rt: in-progress file io work | Jeff Olson | -183/+327 | |
| std: remove unneeded field from RequestData struct std: rt::uv::file - map us_fs_stat & start refactoring calls into FsRequest std: stubbing out stat calls from the top-down into uvio std: us_fs_* operations are now by-val self methods on FsRequest std: post-rebase cleanup std: add uv_fs_mkdir|rmdir + tests & minor test cleanup in rt::uv::file WORKING: fleshing out FileStat and FileInfo + tests std: reverting test files.. refactoring back and cleanup... | ||||
| 2013-09-16 | std::rt::uv::file: Enable tests on Win32 | klutzy | -2/+0 | |
| Closes #8814. | ||||
| 2013-09-06 | Upgrade libuv to the current master (again) | Alex Crichton | -12/+10 | |
| This is a reopening of the libuv-upgrade part of #8645. Hopefully this won't cause random segfaults all over the place. The windows regression in testing should also be fixed (it shouldn't build the whole compiler twice). A notable difference from before is that gyp is now a git submodule instead of always git-cloned at make time. This allows bundling for releases more easily. Closes #8850 | ||||
| 2013-09-06 | auto merge of #9000 : brson/rust/dns, r=anasazi | bors | -6/+8 | |
| This exposes a very simple function for resolving host names. There's a lot more that needs to be done, but this is probably enough for servo to get started connecting to real websites again. | ||||
| 2013-09-05 | std::rt: Some I/O cleanup | Brian Anderson | -6/+8 | |
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -2/+2 | |
| 2013-08-29 | auto merge of #8819 : vadimcn/rust/unit-tests, r=brson | bors | -0/+2 | |
| Some of the tests are failing. I've only managed to fix 'memory_map_file', the rest are up for grabs... Fixes #5261. | ||||
| 2013-08-29 | Revert "auto merge of #8645 : alexcrichton/rust/issue-6436-run-non-blocking, ↵ | Brian Anderson | -11/+14 | |
| r=brson" This reverts commit b8d1fa399402c71331aefd634d710004e00b73a6, reversing changes made to f22b4b169854c8a4ba86c16ee43327d6bcf94562. Conflicts: mk/rt.mk src/libuv | ||||
| 2013-08-28 | Turned off libstd unit tests that currently fail on Windows. | Vadim Chugunov | -0/+2 | |
| 2013-08-27 | Implement process bindings to libuv | Alex Crichton | -14/+11 | |
| Closes #6436 | ||||
| 2013-08-22 | make check appeasement | Jeff Olson | -1/+2 | |
| 2013-08-22 | std: all of the calls in rt::uv::file take a &Loop | Jeff Olson | -37/+37 | |
| 2013-08-22 | std: moved static file actions (open,unlink) to FsRequest | Jeff Olson | -61/+61 | |
| 2013-08-22 | std: reform fn sigs of FileDescriptor methods (better result signalling) | Jeff Olson | -42/+46 | |
| 2013-08-22 | std: rename tmp file paths to go into ./tmp folder in builddir | Jeff Olson | -2/+2 | |
| 2013-08-22 | change FileDescriptor instance methods to use &mut self | Jeff Olson | -11/+11 | |
| 2013-08-22 | std: writing to stdout only works when using -1 offset.. | Jeff Olson | -1/+1 | |
| 2013-08-22 | std: rt::io::file::FileStream fleshed out.. needs more work.. see extended | Jeff Olson | -17/+23 | |
| - change all uses of Path in fn args to &P - FileStream.read assumptions were wrong (libuv file io is non-positional) - the above will mean that we "own" Seek impl info .. should probably push it in UvFileDescriptor.. - needs more tests | ||||
| 2013-08-22 | std: remove fcntl const bindings + making valgrind clean w/ no owned vecs | Jeff Olson | -124/+68 | |
| 2013-08-22 | std: support async/threadpool & sync paths in uv_fs_* calls + add sync test | Jeff Olson | -35/+169 | |
| 2013-08-22 | std: add read and unlink to low-level FileDescriptor + end-to-end CRUD test | Jeff Olson | -53/+106 | |
| 2013-08-22 | std: working tests for low-level libuv open, write and close operations | Jeff Olson | -12/+107 | |
| 2013-08-22 | std: bootstrapping libuv-based fileio in newrt... open & close | Jeff Olson | -9/+160 | |
| the test "touch"es a new file | ||||
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -0/+48 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
