| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-07-02 | Add lifetime to `FutureObj` | Josef Reinhard Brandl | -114/+0 | |
| 2018-06-27 | Fix doc links | Josef Reinhard Brandl | -5/+9 | |
| 2018-06-08 | add a few blanket future impls to std | tinaun | -0/+17 | |
| 2018-06-06 | Add Future and task system to the standard library | Taylor Cramer | -0/+93 | |
| 2012-10-23 | Move futures to std | Brian Anderson | -246/+0 | |
| 2012-10-23 | core: Replace future_pipe with pipe::oneshot | Brian Anderson | -13/+7 | |
| 2012-10-23 | core: Give future_pipe the same definition as pipes::oneshot | Brian Anderson | -7/+13 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -3/+3 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -2/+2 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -1/+2 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -3/+3 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-09-26 | libcore: De-export cleanup, cmath, future, gc, hash, iter-trait, mutable, ↵ | Patrick Walton | -33/+21 | |
| and private | ||||
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -1/+1 | |
| 2012-09-10 | fix a implicitly copyable warning | Niko Matsakis | -1/+1 | |
| 2012-09-10 | Make moves explicit in pipes and pipe compiler | Tim Chevalier | -7/+7 | |
| 2012-09-08 | core: fix separator for Future<A> property | Jeff Olson | -1/+1 | |
| 2012-09-08 | core: change FutureState Forced(A) to Forced(~A) | Jeff Olson | -4/+4 | |
| 2012-09-08 | core: patch from nmatsakis to make futures non-copyable | Jeff Olson | -2/+6 | |
| 2012-09-08 | core/std: finish making futures sendable + test.. still issues | Jeff Olson | -3/+13 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -5/+5 | |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -1/+1 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -3/+3 | |
| 2012-09-02 | Silence non-implicitly-copyable-typarams in coretest | Brian Anderson | -54/+57 | |
| 2012-08-27 | preliminary work on making future's sendable | Niko Matsakis | -24/+73 | |
| also various improvements to the ptr casting fns: - rename assimilate() to to_unsafe_ptr() (fixes #3110) - introduce `unsafe::copy_lifetime()` to copy the lifetime from one ptr to another | ||||
| 2012-08-26 | Camel case the option type | Brian Anderson | -2/+2 | |
| 2012-08-25 | Use less move_it in pipes and future (all but one use) | Ben Blum | -11/+7 | |
| 2012-08-23 | Change calls of `proto!` to use parens. | Paul Stansifer | -2/+2 | |
| 2012-08-23 | Eliminate some extraneous curly brackets inside invocations of `macro_rules!`. | Paul Stansifer | -1/+1 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -4/+4 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -11/+11 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -7/+7 | |
| 2012-08-13 | De-mode core::future. | Graydon Hoare | -15/+19 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -1/+1 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -2/+2 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -3/+3 | |
| 2012-07-31 | rustc: Implement unary move. Closes #917. | Patrick Walton | -2/+2 | |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -2/+2 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -1/+1 | |
| 2012-07-26 | Change `#macro` to `macro_rules!` in some cases. | Paul Stansifer | -6/+3 | |
| 2012-07-17 | Added liveness analysis for protocols, and removed warnings about empty states. | Eric Holk | -4/+2 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -15/+15 | |
| #2907. | ||||
| 2012-07-10 | Use protocol compiler in future.rs. Also split recv into recv and try_recv. | Eric Holk | -50/+3 | |
| 2012-07-06 | Updating tests to use pipes. | Eric Holk | -0/+9 | |
| 2012-07-06 | Port future to pipes. Graph500 is about 21% faster now. | Eric Holk | -19/+78 | |
| Making all tests pass. | ||||
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -43/+43 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-04 | Remove empty argument lists from do expressions | Ben Striegel | -2/+2 | |
| 2012-07-03 | core: Eliminate some overloading of the name "future" in future.rs | Patrick Walton | -1/+2 | |
| 2012-07-02 | rustc: Implement a new resolve pass behind a compile flag | Patrick Walton | -1/+0 | |
