summary refs log tree commit diff
path: root/src/libstd/std.rc
AgeCommit message (Collapse)AuthorLines
2012-10-09Remove old serialization2 vestigial codeErick Tryzelaar-3/+0
2012-10-05std: Silence remaining warningsBrian Anderson-1/+3
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-0/+1
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-04Finish de-exporting std. Part of #3583.Graydon Hoare-60/+42
2012-10-03De-export net::*. Part of #3583.Graydon Hoare-4/+0
2012-10-03Remove uses of + mode from libstdTim Chevalier-3/+0
More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot.
2012-10-03De-export std::{json, getopts}. Part of #3583.Graydon Hoare-2/+0
2012-10-03De-export std::{ebml, ebml2}. Part of #3583.Graydon Hoare-2/+0
2012-10-02Removing explicit uses of + modeTim Chevalier-0/+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-10-02libstd: Switch off legacy modes in both core and std.Patrick Walton-1/+0
2012-10-02De-export std::{fun_treemap, list, map}. Part of #3583.Graydon Hoare-3/+0
2012-10-01De-export std::{uv, uv_ll, uv_iotask, uv_global_loop}. Part of #3583.Graydon Hoare-4/+0
2012-10-01De-export std::test. Part of #3583.Graydon Hoare-1/+0
2012-10-01De-export std::{rope,smallintmap}. Part of #3583.Graydon Hoare-2/+0
2012-09-28De-export std::c_vec. Part of Part of #3583.Graydon Hoare-1/+0
2012-09-28De-export std::deque. Part of #3583.Graydon Hoare-1/+0
2012-09-28De-export std::{time, prettyprint{,2}, arena}. Part of #3583.Graydon Hoare-4/+0
2012-09-28De-mode std::unicode. Part of #3583.Graydon Hoare-1/+0
2012-09-28De-export std::{arc,comm,sync}. Part of #3583.Graydon Hoare-3/+0
2012-09-28De-export std::{bitv, cell, timer}. Part of #3583.Graydon Hoare-3/+0
2012-09-28std: Eliminate deprecated patternsBrian Anderson-0/+1
2012-09-27De-mode std::{treemap,sort}. Part of #3583.Graydon Hoare-3/+0
2012-09-27De-export std::{dbg,sha1,md4,tempfile,term}. Part of #3583.Graydon Hoare-5/+0
2012-09-27De-export std::{base64,cmp,par}. Part of #3583.Graydon Hoare-3/+0
2012-09-26libstd: Add serialization2 versions of prettyprint and ebmlErick Tryzelaar-1/+7
2012-09-26libstd: change serialization2 to take &self argument methodsErick Tryzelaar-1/+0
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-26libstd: add the new trait-based serializationErick Tryzelaar-1/+3
This will need a snapshot before we can convert ebml and rustc to use the new-style serialization.
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+42
#[legacy_exports];
2012-09-19std: Clean up crate descriptionBrian Anderson-1/+9
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-0/+2
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-09-10Camel case std::serializationBrian Anderson-1/+0
2012-09-10Convert std::map to camel caseBrian Anderson-1/+0
2012-09-09std: warn(non_camel_case_types) -> denyBrian Anderson-2/+1
2012-09-05rustc: "import" -> "use" in .rc filesPatrick Walton-1/+1
2012-09-04std: Convert test to camel caseBrian Anderson-1/+0
2012-09-04std: Camel case smallintmapBrian Anderson-1/+0
2012-09-04std: Camel case sortBrian Anderson-1/+0
2012-09-04std: Camel case treemapBrian Anderson-1/+0
2012-09-04std: Camel case listBrian Anderson-1/+0
2012-09-02std: Camel case the rope moduleBrian Anderson-1/+0
2012-09-02std: Allow camel case for list typeBrian Anderson-0/+1
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-27/+9
2012-08-31std: Camel case net modulesBrian Anderson-0/+4
2012-08-30Bump version to 0.4Brian Anderson-2/+2
2012-08-29std: More camel casingBrian Anderson-0/+7
2012-08-29Camel case more std typesBrian Anderson-0/+14
2012-08-26convert std::arc types to camelcaseBen Blum-0/+1
2012-08-26convert std::sync types to camelcaseBen Blum-0/+1
2012-08-16Fix compile errors in tutorial tests.Eric Holk-1/+1