about summary refs log tree commit diff
path: root/src/libserialize/json.rs
AgeCommit message (Expand)AuthorLines
2015-02-24Use arrays instead of vectors in testsVadim Petrochenkov-5/+5
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-6/+6
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-6/+6
2015-02-18Convert required suffixes into a use of `as`.Niko Matsakis-11/+11
2015-02-14Rename `fmt::Writer` to `fmt::Write`Chris Wong-8/+8
2015-02-08Rename Show to Debug, String to DisplayAlexander Korolkov-2/+2
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-4/+4
2015-02-03Auto merge of #21613 - alfie:suffix-small, r=alexcrichtonbors-22/+22
2015-02-02More deprecating of i/u suffixesAlfie John-22/+22
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-7/+7
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-2/+2
2015-01-30rollup merge of #21713: alexcrichton/second-pass-fmtAlex Crichton-2/+2
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-2/+2
2015-01-30std: Stabilize FromStr and parseAlex Crichton-4/+5
2015-01-30Remove all `i` suffixesTobias Bucher-2/+2
2015-01-29Auto merge of #21677 - japaric:no-range, r=alexcrichtonbors-18/+18
2015-01-29s/Show/Debug/gJorge Aparicio-13/+13
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-3/+3
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-2/+2
2015-01-29Rollup merge of 21662 - oli-obk:hashmap_enum_json, r=alexcrichtonManish Goregaokar-9/+25
2015-01-27fix #[cfg(test)] warningsJorge Aparicio-2/+1
2015-01-26Fallout of io => old_ioAlex Crichton-9/+9
2015-01-26don't ignore errors in encode and allow hashmaps with enum keysOliver Schneider-9/+25
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-9/+28
2015-01-21rollup merge of #21396: japaric/no-parens-in-rangeAlex Crichton-2/+2
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-9/+28
2015-01-21Rollup merge of #21314 - fenhl:patch-1, r=steveklbanikBarosl LEE-1/+1
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-2/+2
2015-01-19ugly hack to convert BadHashMapKey error to general fmt::ErrorOliver 'ker' Schneider-5/+20
2015-01-19add unit test for non string/numeric map keysOliver 'ker' Schneider-1/+20
2015-01-19lower FnMut to FnOnce since json-hack is no longer requiredOliver 'ker' Schneider-4/+4
2015-01-19json-encoder: report error when hash map key is not string or numericOliver 'ker' Schneider-78/+154
2015-01-17Undo accidental change unrelated to my PRFenhl-1/+1
2015-01-17Use singular they in the serialize::json docsFenhl-2/+2
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-2/+2
2015-01-07rollup merge of #20728: huonw/type-param-shadowingAlex Crichton-1/+1
2015-01-08Prohibit type parameter shadowing with a clunky hammer.Huon Wilson-1/+1
2015-01-07rollup merge of #20721: japaric/snapAlex Crichton-15/+14
2015-01-07rollup merge of #20708: aturon/new-int-modulesAlex Crichton-8/+0
2015-01-07use slicing sugarJorge Aparicio-15/+14
2015-01-07register new snapshotsJorge Aparicio-8/+0
2015-01-08Rename `target_word_size` to `target_pointer_width`Nick Cameron-3/+3
2015-01-07Register new snapshotsAlex Crichton-8/+0
2015-01-06More test fixesAlex Crichton-12/+13
2015-01-06rollup merge of #20481: seanmonstar/fmt-show-stringAlex Crichton-24/+32
2015-01-07falloutNick Cameron-18/+39
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-24/+32
2015-01-07Replace full slice notation with index callsNick Cameron-94/+94
2015-01-05rollup merge of #20556: japaric/no-for-sizedAlex Crichton-1/+1