summary refs log tree commit diff
path: root/src/libstd/ebml.rs
AgeCommit message (Collapse)AuthorLines
2012-12-19Remove serialize::traits submodule.Erick Tryzelaar-1/+1
2012-12-18Stop resolving static methods at the module level. Closes #4179Brian Anderson-1/+1
2012-12-17Switch from serialization to std::serialize. (snapshot)Erick Tryzelaar-25/+25
2012-12-10Minor cleanups to pipes and serializationBrian Anderson-3/+2
2012-12-09Remove transitional codeBrian Anderson-10/+0
2012-12-06Rename std::ebml::Reader => std::ebml::reader, same for writerTim Chevalier-5/+5
Closes #4076
2012-12-04librustc: Implement explicit self for Add and Index; add a hack in the ↵Patrick Walton-0/+10
borrow checker to support this. r=nmatsakis
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-24Long linesTim Chevalier-8/+16
2012-11-24Split EBML module into a reader and a writer moduleTim Chevalier-466/+474
Minor refactoring, no review. Closes #2739
2012-10-07Remove the old serializers (needs snapshot)Erick Tryzelaar-187/+207
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-7/+8
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-03De-export std::{ebml, ebml2}. Part of #3583.Graydon Hoare-47/+22
2012-10-02libstd: Switch off legacy modes in both core and std.Patrick Walton-4/+4
2012-10-01Demode ebml, ebml2, json, parTim Chevalier-4/+4
2012-09-28demode vecNiko Matsakis-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-1/+1
2012-09-25Demode dvecTim Chevalier-1/+1
2012-09-18libcore: make a copyless io::BytesWriterErick Tryzelaar-4/+5
2012-09-18Replace uses of 'unchecked' with 'unsafe'Brian Anderson-1/+1
2012-09-11Introduce auto adjustment table to subsume autoderef/autoref/borrowings.Niko Matsakis-1/+19
Fixes #3261 Fixes #3443
2012-09-10Fix ebml testsBrian Anderson-4/+4
2012-09-10Camel case std::serializationBrian Anderson-2/+2
2012-09-10Make remaining moves explicit in libstdTim Chevalier-1/+1
2012-09-04libstd: "import" -> "use"Patrick Walton-2/+2
2012-09-02Camel case core::opsBrian Anderson-1/+1
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-2/+0
2012-08-29std: Camel case some constructorsBrian Anderson-3/+2
2012-08-28CamelCasify lots of stdBen Striegel-96/+98
2012-08-27Turn off the verbose-mode of ebml.Graydon Hoare-1/+1
2012-08-26Camel case the option typeBrian Anderson-18/+18
2012-08-25libstd: serialization should use &strs.Erick Tryzelaar-5/+5
2012-08-23Rename str::bytes to str::to_bytesTim Chevalier-1/+1
Closes #3245
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-34/+34
2012-08-22libstd: fix serialization no-implicit-copies warningsErick Tryzelaar-14/+14
2012-08-22libstd: switch ebml's wr_tagged_str to use str::byte_sliceErick Tryzelaar-7/+1
2012-08-15Expunge match checksTim Chevalier-3/+6
2012-08-14Convert more core types to camel caseBrian Anderson-6/+6
2012-08-13Stop parsing old operator overloading syntaxBrian Anderson-10/+0
2012-08-08Convert impls to new syntaxBrian Anderson-7/+7
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-4/+4
2012-08-05Switch alts to use arrowsBrian Anderson-23/+14
2012-08-01Convert ret to returnBrian Anderson-25/+29
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-34/+34
2012-07-27rustc: Use coherence for operator overloading.Patrick Walton-0/+20
The only use of the old-style impls is now placement new.
2012-07-26Removed the rest of the vec::view calls that were marked with #2880. Fixes ↵Eric Holk-1/+1
#2880.
2012-07-26Use iteration protocol for ebml, use vec::view in more places (issue #2880)Eric Holk-6/+9
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-8/+25
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-23/+23
#2907.
2012-07-12Fix the signature on vec::view.Eric Holk-2/+3
Due to limitations in region inference, this has the effect of making vec::view pretty much entirely unusable.