about summary refs log tree commit diff
path: root/src/libserialize/json.rs
AgeCommit message (Expand)AuthorLines
2014-06-13auto merge of #14831 : alexcrichton/rust/format-intl, r=brsonbors-0/+68
2014-06-11std: Remove i18n/l10n from format!Alex Crichton-0/+68
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-91/+89
2014-06-08Fix spelling errors in comments.Joseph Crail-3/+3
2014-06-05Fallout from the libcollections movementAlex Crichton-14/+8
2014-06-03Implement ToJson for &[T], and add tests. Closes #14619Jorge Aparicio-0/+54
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-12/+12
2014-05-28std: Remove format_strbuf!()Alex Crichton-7/+7
2014-05-27Move std::{reflect,repr,Poly} to a libdebug crateAlex Crichton-5/+5
2014-05-27auto merge of #14414 : richo/rust/features/nerf_unused_string_fns, r=alexcric...bors-135/+135
2014-05-27std: Rename strbuf operations to stringRicho Healey-135/+135
2014-05-27serialize: Remove old commented out codeErick Tryzelaar-30/+0
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-48/+48
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-1/+1
2014-05-22libstd: Remove all uses of `~str` from `libstd`Patrick Walton-3/+9
2014-05-16libserialize: Remove all uses of `~str` from `libserialize`.Patrick Walton-204/+232
2014-05-15Updates with core::fmt changesAlex Crichton-1/+1
2014-05-13serialize: Broaden ignores of json testsAlex Crichton-2/+2
2014-05-09auto merge of #14065 : alexcrichton/rust/ignore-flaky-windows-test, r=brsonbors-0/+2
2014-05-09serialize: Ignore two flaky json tests on windowsAlex Crichton-0/+2
2014-05-08Handle fallout in documentationKevin Ballard-4/+4
2014-05-08Handle fallout in libserializeKevin Ballard-38/+38
2014-05-07core: Inherit non-allocating slice functionalityAlex Crichton-1/+0
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-8/+7
2014-05-03auto merge of #13773 : brson/rust/boxxy, r=alexcrichtonbors-63/+63
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-63/+63
2014-05-02Implement ToJson for Vec<T>Herman J. Radtke III-0/+4
2014-05-01auto merge of #13886 : japaric/rust/fix-an-typos, r=alexcrichtonbors-2/+2
2014-05-01Fix a/an typosJorge Aparicio-2/+2
2014-05-01auto merge of #13877 : thestinger/rust/de-tilde-str-vec, r=alexcrichtonbors-20/+20
2014-05-01remove leftover obsolete string literalsDaniel Micay-19/+19
2014-04-30Add serialization support for StrBufHerman J. Radtke III-35/+23
2014-04-30librustc: Remove `~"string"` and `&"string"` from the languagePatrick Walton-1/+1
2014-04-30auto merge of #13648 : gereeter/rust/removed-rev, r=alexcrichtonbors-2/+2
2014-04-28Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is p...Jonathan S-2/+2
2014-04-27Fix a code formatting issue in json.rsNicolas Silva-1/+2
2014-04-27Add a streaming parser to serialize::json.Nicolas Silva-261/+1048
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-193/+196
2014-04-18Update the rest of the compiler with ~[T] changesAlex Crichton-5/+5
2014-04-11Decode non-BMP hex escapes in JSONKeegan McAllister-25/+65
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-12/+16
2014-04-06De-~[] Mem{Reader,Writer}Steven Fackler-9/+9
2014-04-06De-~[] Reader and WriterSteven Fackler-2/+2
2014-03-31serialize: Switch field privacy as necessaryAlex Crichton-8/+8
2014-04-01Json doesn't need to depend on IoError to implement Encodable #13230Eunchong Yu-2/+2
2014-03-30Removed deprecated functions `map` and `flat_map` for vectors and slices.Marvin Löbel-1/+1
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-2/+2
2014-03-27serialize: use ResultSean McArthur-448/+412
2014-03-27Fix fallout of removing default boundsAlex Crichton-1/+1
2014-03-18closes #12967 fix [en|de]coding of HashMap<K,V> where K is a numeric typeJeff Olson-1/+84