about summary refs log tree commit diff
path: root/src/libstd/serialization2.rs
AgeCommit message (Collapse)AuthorLines
2012-10-09Remove old serialization2 vestigial codeErick Tryzelaar-7/+0
2012-10-07Remove the old serializers (needs snapshot)Erick Tryzelaar-557/+1
2012-10-01Add deserializable and more types to serialization2Erick Tryzelaar-27/+181
2012-10-01Demode ebml, ebml2, json, parTim Chevalier-2/+2
2012-09-28std: Eliminate deprecated patternsBrian Anderson-6/+5
2012-09-26libstd: change serialization2 to take &self argument methodsErick Tryzelaar-169/+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-26libstd: add the new trait-based serializationErick Tryzelaar-0/+382
This will need a snapshot before we can convert ebml and rustc to use the new-style serialization.