| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-06-11 | sync: Move underneath libstd | Alex Crichton | -205/+0 | |
| This commit is the final step in the libstd facade, #13851. The purpose of this commit is to move libsync underneath the standard library, behind the facade. This will allow core primitives like channels, queues, and atomics to all live in the same location. There were a few notable changes and a few breaking changes as part of this movement: * The `Vec` and `String` types are reexported at the top level of libcollections * The `unreachable!()` macro was copied to libcore * The `std::rt::thread` module was moved to librustrt, but it is still reexported at the same location. * The `std::comm` module was moved to libsync * The `sync::comm` module was moved under `sync::comm`, and renamed to `duplex`. It is now a private module with types/functions being reexported under `sync::comm`. This is a breaking change for any existing users of duplex streams. * All concurrent queues/deques were moved directly under libsync. They are also all marked with #![experimental] for now if they are public. * The `task_pool` and `future` modules no longer live in libsync, but rather live under `std::sync`. They will forever live at this location, but they may move to libsync if the `std::task` module moves as well. [breaking-change] | ||||
| 2014-05-27 | std: Remove String's to_owned | Richo Healey | -12/+12 | |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -1/+1 | |
| [breaking-change] | ||||
| 2014-05-14 | libsync: Remove all uses of `~str` from `libsync` | Patrick Walton | -1/+1 | |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -12/+12 | |
| 2014-04-08 | Register new snapshots | Alex Crichton | -3/+3 | |
| 2014-03-31 | sync: Switch field privacy as necessary | Alex Crichton | -1/+1 | |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -1/+1 | |
| Closes #2569 | ||||
| 2014-03-27 | Fix fallout of removing default bounds | Alex Crichton | -3/+3 | |
| This is all purely fallout of getting the previous commit to compile. | ||||
| 2014-03-13 | std: Rename Chan/Port types and constructor | Alex Crichton | -9/+9 | |
| * Chan<T> => Sender<T> * Port<T> => Receiver<T> * Chan::new() => channel() * constructor returns (Sender, Receiver) instead of (Receiver, Sender) * local variables named `port` renamed to `rx` * local variables named `chan` renamed to `tx` Closes #11765 | ||||
| 2014-02-11 | Move replace and swap to std::mem. Get rid of std::util | Edward Wang | -1/+1 | |
| Also move Void to std::any, move drop to std::mem and reexport in prelude. | ||||
| 2014-02-05 | move concurrent stuff from libextra to libsync | JeremyLetang | -0/+205 | |
