| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-26 | std: Demode more of list and treemap | Brian Anderson | -7/+7 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -51/+55 | |
| 2012-09-26 | libstd: port json over to serialization2 | Erick Tryzelaar | -462/+754 | |
| 2012-09-26 | libstd: Add serialization2 versions of prettyprint and ebml | Erick Tryzelaar | -1/+772 | |
| 2012-09-26 | libstd: change serialization2 to take &self argument methods | Erick Tryzelaar | -170/+197 | |
| Unfortunately this trips over issue (#3585), where auto-ref isn't playing nicely with @T implementations. Most serializers don't care, but prettyprint2 won't properly display "@" until #3585 is fixed. | ||||
| 2012-09-26 | libstd: add the new trait-based serialization | Erick Tryzelaar | -1/+385 | |
| This will need a snapshot before we can convert ebml and rustc to use the new-style serialization. | ||||
| 2012-09-26 | std: Fix mode warnings in fun_treemap and list | Brian Anderson | -5/+5 | |
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -2/+2 | |
| 2012-09-26 | libcore: De-mode at_vec | Patrick Walton | -3/+3 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -1/+1 | |
| 2012-09-25 | Fix long lines | Tim Chevalier | -1/+2 | |
| 2012-09-25 | Demode dvec | Tim Chevalier | -4/+4 | |
| 2012-09-25 | Demode core::result | Brian Anderson | -45/+45 | |
| 2012-09-25 | Check more things with deprecated_modes | Brian Anderson | -4/+4 | |
| 2012-09-25 | Add timsort to std/sort | Simon BD | -0/+594 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -233/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -21/+21 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -4/+4 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -25/+21 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -39/+42 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+101 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+234 | |
| 2012-09-19 | Remove old stage0 compat gunk | Brian Anderson | -8/+0 | |
| 2012-09-19 | std: Demode test | Brian Anderson | -24/+27 | |
| 2012-09-19 | std: Mostly demode net::tcp | Brian Anderson | -30/+30 | |
| 2012-09-19 | std: Demode uv::global_loop | Brian Anderson | -0/+3 | |
| 2012-09-19 | std: Demode uv::iotask | Brian Anderson | -3/+6 | |
| 2012-09-19 | std: Partially demode uv::ll | Brian Anderson | -10/+10 | |
| 2012-09-19 | std: Demode bitv | Brian Anderson | -1/+4 | |
| 2012-09-19 | std: Demode arena | Brian Anderson | -3/+6 | |
| 2012-09-19 | repair broken map test; it seems that the original test relied on hokey | Niko Matsakis | -3/+0 | |
| hash fns in order to setup conflicts. I just removed those asserts, so the test is not as good as it once was. | ||||
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -8/+8 | |
| 2012-09-19 | std: Clean up crate description | Brian Anderson | -1/+9 | |
| 2012-09-19 | Remove final bits of residual hokey-hash functions. Close #1616. | Graydon Hoare | -6/+0 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -66/+11 | |
| 2012-09-19 | V2: now with more locks! | Philipp Brüschweiler | -2/+2 | |
| 2012-09-19 | core: Allocate threads on demand, not on scheduler startup | Philipp Brüschweiler | -2/+2 | |
| API change: rust_kernel::create_scheduler() or rust_scheduler::rust_scheduler() respecitevly now take ownership of the launch factory argument, it is needed to create new threads on demand. Also renames rustrt::sched_threads() to rustrt::rust_sched_threads() for consistency. Added rustrt::rust_max_sched_threads() to return the maximal number of scheduled threads of the current scheduler. Fixes #3493. | ||||
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -69/+83 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -88/+68 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -68/+88 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -10/+10 | |
| 2012-09-18 | rustc: Remove legacy mode inference, unless #[legacy_modes] is used | Patrick Walton | -0/+2 | |
| 2012-09-18 | core: Move Exclusive and SharedMutableState to the private mod | Brian Anderson | -2/+2 | |
| 2012-09-18 | libcore: make a copyless io::BytesWriter | Erick Tryzelaar | -31/+29 | |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -18/+18 | |
| 2012-09-18 | core: Rename at_vec::unsafe to raw | Brian Anderson | -1/+1 | |
| 2012-09-15 | vec::u8 => vec::bytes (#3444) | Erick Tryzelaar | -1/+1 | |
| 2012-09-15 | int/uint parse_buf => parse_bytes (#3444) | Erick Tryzelaar | -2/+2 | |
| 2012-09-13 | Fix implicit-instantiation of non-implicitly-copyable warnings. | Graydon Hoare | -1/+1 | |
| 2012-09-13 | s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rs | Niko Matsakis | -65/+3 | |
| hat tip to @jruderman | ||||
