summary refs log tree commit diff
path: root/src/libserialize/collection_impls.rs
AgeCommit message (Collapse)AuthorLines
2014-03-27serialize: use ResultSean McArthur-110/+132
All of Decoder and Encoder's methods now return a Result. Encodable.encode() and Decodable.decode() return a Result as well. fixes #12292
2014-03-23use TotalEq for HashMapDaniel Micay-4/+4
Closes #5283
2014-03-06collections: Correct with_capacity_and_hasherAlex Crichton-2/+2
The arguments were accidentally swapped in the wrong order. Closes #12743
2014-02-27collections: allow `HashMap` to work with generic hashersErick Tryzelaar-17/+27
2014-02-24Move extra::json to libserializeAlex Crichton-0/+281
This also inverts the dependency between libserialize and libcollections. cc #8784