| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-26 | libstd: add the new trait-based serialization | Erick Tryzelaar | -1/+3 | |
| This will need a snapshot before we can convert ebml and rustc to use the new-style serialization. | ||||
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+42 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | std: Clean up crate description | Brian Anderson | -1/+9 | |
| 2012-09-18 | rustc: Remove legacy mode inference, unless #[legacy_modes] is used | Patrick Walton | -0/+2 | |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -1/+1 | |
| 2012-09-10 | Camel case std::serialization | Brian Anderson | -1/+0 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -1/+0 | |
| 2012-09-09 | std: warn(non_camel_case_types) -> deny | Brian Anderson | -2/+1 | |
| 2012-09-05 | rustc: "import" -> "use" in .rc files | Patrick Walton | -1/+1 | |
| 2012-09-04 | std: Convert test to camel case | Brian Anderson | -1/+0 | |
| 2012-09-04 | std: Camel case smallintmap | Brian Anderson | -1/+0 | |
| 2012-09-04 | std: Camel case sort | Brian Anderson | -1/+0 | |
| 2012-09-04 | std: Camel case treemap | Brian Anderson | -1/+0 | |
| 2012-09-04 | std: Camel case list | Brian Anderson | -1/+0 | |
| 2012-09-02 | std: Camel case the rope module | Brian Anderson | -1/+0 | |
| 2012-09-02 | std: Allow camel case for list type | Brian Anderson | -0/+1 | |
| 2012-09-02 | std: warn(non_camel_case_types) everywhere. still some exceptions | Brian Anderson | -27/+9 | |
| 2012-08-31 | std: Camel case net modules | Brian Anderson | -0/+4 | |
| 2012-08-30 | Bump version to 0.4 | Brian Anderson | -2/+2 | |
| 2012-08-29 | std: More camel casing | Brian Anderson | -0/+7 | |
| 2012-08-29 | Camel case more std types | Brian Anderson | -0/+14 | |
| 2012-08-26 | convert std::arc types to camelcase | Ben Blum | -0/+1 | |
| 2012-08-26 | convert std::sync types to camelcase | Ben Blum | -0/+1 | |
| 2012-08-16 | Fix compile errors in tutorial tests. | Eric Holk | -1/+1 | |
| 2012-08-16 | Add std::comm with DuplexStream | Eric Holk | -0/+1 | |
| 2012-08-12 | std: Add cell to the std crate and make it build | Brian Anderson | -0/+2 | |
| 2012-08-10 | Implement mutex_arc and rw_arc; add some tests | Ben Blum | -0/+1 | |
| 2012-08-10 | Split libcore/arc.rs: arc -> std::arc; exclusive -> unsafe::exclusive | Ben Blum | -0/+4 | |
| 2012-08-02 | Remove std::util | Ben Blum | -2/+1 | |
| 2012-08-01 | Clean out transitional lint. | Graydon Hoare | -5/+0 | |
| 2012-07-30 | Move send_map to libcore | Ben Blum | -2/+1 | |
| 2012-07-27 | export send_map and use fewer impl names | Niko Matsakis | -1/+2 | |
| 2012-07-27 | wip: add a sendable hashmap to stdlib | Niko Matsakis | -0/+1 | |
| caveats: - not efficient nor heavily tested - API subject to change and currently incompatible with map | ||||
| 2012-07-26 | Nomenclature fixes in the lint checker. Fewer double-negatives. | Graydon Hoare | -0/+5 | |
| New style is allow(foo), warn(foo), deny(foo) and forbid(foo), mirrored by -A foo, -W foo, -D foo and -F foo on command line. These replace -W no-foo, -W foo, -W err-foo, respectively. Forbid is new, and means "deny, and you can't override it". | ||||
| 2012-07-23 | Adding simple net::url module to parse and format urls. | Daniel Patterson | -1/+2 | |
| 2012-07-11 | Fix some version numbers. | Graydon Hoare | -2/+2 | |
| 2012-07-05 | std: Actually buildbase64 | Brian Anderson | -0/+1 | |
| 2012-07-05 | std: Export base64 | Brian Anderson | -0/+1 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -1/+1 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-06-29 | std: kludge export of net_ip in std.rc until submodule export is sorted | Jeff Olson | -1/+1 | |
| 2012-06-19 | Moved arc to libcore and added an arc that allows shared mutable state ↵ | Eric Holk | -2/+1 | |
| through mutual exclusion. | ||||
| 2012-06-16 | Revert "Moved arc to libstd and added an arc that allows shared mutable ↵ | Tim Chevalier | -1/+2 | |
| state through mutual exclusion." This reverts commit 015527b0cee0bc5cfaac8dd610035a0c1b2f8ea6. | ||||
| 2012-06-15 | Moved arc to libstd and added an arc that allows shared mutable state ↵ | Eric Holk | -2/+1 | |
| through mutual exclusion. | ||||
| 2012-06-07 | std: Implement a fuzzy-equal interface | Patrick Walton | -0/+2 | |
| 2012-06-04 | Make vecs implicitly copyable for all of our projects. | Michael Sullivan | -0/+2 | |
| 2012-05-30 | Move par into libstd. Closes #2441. | Eric Holk | -1/+2 | |
| 2012-05-25 | std: Rename uv::hl to uv::iotask. Additional cleanup | Brian Anderson | -2/+2 | |
| 2012-05-23 | A shareable atomically reference counted pointer wrapper. | Eric Holk | -1/+2 | |
| Needs more tests to ensure safety, and probably some more work on usability too. | ||||
| 2012-05-22 | std: reworking how some net and libuv modules are exported in the rc | Jeff Olson | -1/+2 | |
| .. turns out that, without the export, the modules aren't accessible outside of the crate, itself. I thought that, by importing some module into another (nesting it) and exporting from that nested module (which is, itself, exported from std.rc) that my mod would be in the build artifact. This doesn't appear to be the case. learning is fun! | ||||
| 2012-05-22 | std: pushing existing code in net.rs -> net_ip.rs and re-import/exporting | Jeff Olson | -0/+1 | |
