| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -4/+4 | |
| 2014-04-13 | Replace 'region' with 'lifetime' in a few transmute function names | John Simon | -4/+4 | |
| 2014-04-11 | libtest: rename `BenchHarness` to `Bencher` | Liigo Zhuang | -15/+13 | |
| Closes #12640 | ||||
| 2014-04-04 | Register new snapshots | Alex Crichton | -1/+0 | |
| 2014-04-03 | auto merge of #13296 : brson/rust/0.11-pre, r=alexcrichton | bors | -1/+1 | |
| This also changes some of the download links in the documentation to 'nightly'. | ||||
| 2014-04-03 | auto merge of #13290 : alexcrichton/rust/rollup, r=alexcrichton | bors | -6/+4 | |
| Closes #13285 (rustc: Stop using LLVMGetSectionName) Closes #13280 (std: override clone_from for Vec.) Closes #13277 (serialize: add a few missing pubs to base64) Closes #13275 (Add and remove some ignore-win32 flags) Closes #13273 (Removed managed boxes from libarena.) Closes #13270 (Minor copy-editing for the tutorial) Closes #13267 (fix Option<~ZeroSizeType>) Closes #13265 (Update emacs mode to support new `#![inner(attribute)]` syntax.) Closes #13263 (syntax: Remove AbiSet, use one Abi) | ||||
| 2014-04-03 | Bump version to 0.11-pre | Brian Anderson | -1/+1 | |
| This also changes some of the download links in the documentation to 'nightly'. | ||||
| 2014-04-03 | auto merge of #13286 : alexcrichton/rust/release, r=brson | bors | -1/+1 | |
| Merging the 0.10 release into the master branch. | ||||
| 2014-04-03 | Removed managed boxes from libarena. | Benjamin Adamson | -6/+4 | |
| 2014-03-31 | arena: Switch field privacy as necessary | Alex Crichton | -6/+8 | |
| 2014-03-31 | Bump version to 0.10 | Alex Crichton | -1/+1 | |
| 2014-03-29 | auto merge of #13183 : erickt/rust/remove-list, r=alexcrichton | bors | -7/+5 | |
| `collections::list::List` was decided in a [team meeting](https://github.com/mozilla/rust/wiki/Meeting-weekly-2014-03-25) that it was unnecessary, so this PR removes it. Additionally, it removes an old and redundant purity test and fixes some warnings. | ||||
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -9/+9 | |
| Closes #2569 | ||||
| 2014-03-28 | collections: remove List | Erick Tryzelaar | -7/+5 | |
| It was decided in a meeting that this module wasn't needed, and more thought should be put into a persistent collections library. | ||||
| 2014-03-28 | Rename Pod into Copy | Flavio Percoco | -39/+39 | |
| Summary: So far, we've used the term POD "Plain Old Data" to refer to types that can be safely copied. However, this term is not consistent with the other built-in bounds that use verbs instead. This patch renames the Pod kind into Copy. RFC: 0003-opt-in-builtin-traits Test Plan: make check Reviewers: cmr Differential Revision: http://phabricator.octayn.net/D3 | ||||
| 2014-03-23 | Register new snapshots | Flavio Percoco | -1/+0 | |
| 2014-03-22 | auto merge of #13076 : FlaPer87/rust/remove-freeze, r=alexcrichton | bors | -3/+0 | |
| This PR removes the `Freeze` kind and the `NoFreeze` marker completely. Fixes #12577 cc @nikomatsakis r? | ||||
| 2014-03-22 | arena: Fix fallout of removing get() | Alex Crichton | -2/+2 | |
| 2014-03-22 | arena: Remove Freeze / NoFreeze | Flavio Percoco | -3/+0 | |
| 2014-03-22 | Remove outdated and unnecessary std::vec_ng::Vec imports. | Huon Wilson | -1/+0 | |
| (And fix some tests.) | ||||
| 2014-03-21 | test: Make manual changes to deal with the fallout from removal of | Patrick Walton | -8/+10 | |
| `~[T]` in test, libgetopts, compiletest, librustdoc, and libnum. | ||||
| 2014-03-20 | syntax: Tidy up parsing the new attribute syntax | Alex Crichton | -0/+1 | |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -1/+0 | |
| It's now in the prelude. | ||||
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -2/+2 | |
| Closes #12702 | ||||
| 2014-03-15 | Add rustdoc html crate info | Steven Fackler | -0/+3 | |
| 2014-03-14 | lint: add lint for use of a `~[T]`. | Huon Wilson | -0/+1 | |
| This is useless at the moment (since pretty much every crate uses `~[]`), but should help avoid regressions once completely removed from a crate. | ||||
| 2014-03-13 | Remove Rc's borrow method to avoid conflicts with RefCell's borrow in ↵ | Eduard Burtescu | -2/+2 | |
| Rc<RefCell<T>>. | ||||
| 2014-02-27 | Replaced list::each with iter() in Arenas's Drop impl | Bruno de Oliveira Abinader | -6/+3 | |
| 2014-02-24 | arena,std,serialize: remove some unnecessary transmutes. | Huon Wilson | -5/+4 | |
| `as`-able transmutes, duplication and manual slice decomposition are silly. | ||||
| 2014-02-23 | std: Move intrinsics to std::intrinsics. | Brian Anderson | -2/+2 | |
| Issue #1457 | ||||
| 2014-02-22 | remove the TyDesc from TypedArena | Daniel Micay | -45/+29 | |
| This prevents generating visit glue when using a TypedArena. The problem still exists for the untyped Arena. | ||||
| 2014-02-20 | move extra::test to libtest | Liigo Zhuang | -3/+3 | |
| 2014-02-14 | extern mod => extern crate | Alex Crichton | -4/+3 | |
| This was previously implemented, and it just needed a snapshot to go through | ||||
| 2014-02-13 | Removed num::Orderable | Michael Darakananda | -2/+3 | |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, ↵ | JeremyLetang | -4/+3 | |
| mut_offset) | ||||
| 2014-02-11 | Move replace and swap to std::mem. Get rid of std::util | Edward Wang | -2/+1 | |
| Also move Void to std::any, move drop to std::mem and reexport in prelude. | ||||
| 2014-02-09 | std: Add move_val_init to mem. Replace direct intrinsic usage | Brian Anderson | -5/+5 | |
| 2014-02-09 | arena: use the generic `bh.iter` to stop the benchmarks being DCE'd. | Huon Wilson | -9/+9 | |
| Before: test test::bench_nonpod_nonarena ... bench: 62 ns/iter (+/- 6) test test::bench_pod_nonarena ... bench: 0 ns/iter (+/- 0) After: test test::bench_nonpod_nonarena ... bench: 158 ns/iter (+/- 11) test test::bench_pod_nonarena ... bench: 48 ns/iter (+/- 2) The other tests show no change, but are adjusted to use the generic return value of `.iter` anyway so that this doesn't change in future. | ||||
| 2014-02-07 | allow generating drop glue without the TyDesc | Daniel Micay | -3/+2 | |
| Reflection is now the only user of type descriptors. Uses of drop glue no longer cause a type descriptor to be generated. | ||||
| 2014-02-07 | moved collections from libextra into libcollections | HeroesGrave | -3/+5 | |
| 2014-02-02 | arena: stop using @[]. | Huon Wilson | -19/+23 | |
| 2014-02-01 | auto merge of #11930 : bjz/rust/next_power_of_two, r=huonw | bors | -3/+2 | |
| 2014-01-31 | Introduce marker types for indicating variance and for opting out | Niko Matsakis | -1/+3 | |
| of builtin bounds. Fixes #10834. Fixes #11385. cc #5922. | ||||
| 2014-02-01 | Remove some unused imports | Brendan Zabarauskas | -1/+0 | |
| 2014-02-01 | Make next_power_of_two generic for unsigned integers | Brendan Zabarauskas | -2/+2 | |
| Also rename `next_power_of_two_opt` to `checked_next_power_of_two`. | ||||
| 2014-01-29 | extra: move arena to libarena | David Manescu | -0/+609 | |
| In line with the dissolution of libextra - #8784 - moves arena to its own library libarena. Changes based on PR #11787. Updates .gitignore to ignore doc/arena. | ||||
