about summary refs log tree commit diff
path: root/src/libserialize/serialize.rs
AgeCommit message (Expand)AuthorLines
2016-03-22try! -> ?Jorge Aparicio-14/+14
2015-09-08some more clippy-based improvementsAndre Bogus-1/+1
2015-08-12Fallout in libs -- misc missing bounds uncovered by WF checks.Niko Matsakis-1/+1
2015-04-14std: Remove old_io/old_path/rand modulesAlex Crichton-32/+0
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-43/+43
2015-03-23Add generic conversion traitsAaron Turon-1/+1
2015-03-20std: Remove old_io/old_path from the preludeAlex Crichton-1/+1
2015-03-12Stabilize std::pathAaron Turon-0/+5
2015-03-04std: Deprecate std::old_io::fsAlex Crichton-0/+14
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-1/+1
2015-02-03Rename std::path to std::old_pathAaron Turon-9/+9
2015-02-02More deprecating of i/u suffixesAlfie John-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-2/+2
2015-01-19lower FnMut to FnOnce since json-hack is no longer requiredOliver 'ker' Schneider-1/+1
2015-01-07use slicing sugarJorge Aparicio-1/+1
2015-01-06Test fixes and rebase conflictsAlex Crichton-2/+2
2015-01-06rollup merge of #20563: cmr/macro-input-future-proofingAlex Crichton-1/+1
2015-01-06serialize macro fixCorey Richardson-1/+1
2015-01-06rollup merge of #20656: japaric/at-cleanAlex Crichton-4/+4
2015-01-07Replace full slice notation with index callsNick Cameron-1/+1
2015-01-06cleanup: use short AT notation (`Ty::Item` instead of `<Ty as Trait>::Item`)Jorge Aparicio-4/+4
2015-01-05Merge remote-tracking branch 'nrc/sized-2' into rollupAlex Crichton-2/+2
2015-01-06FalloutNick Cameron-2/+2
2015-01-05sed -i -s 's/ for Sized?//g' **/*.rsJorge Aparicio-1/+1
2015-01-04serialize: Use assoc types + less old_orphan_checkAlex Crichton-246/+267
2014-12-21Fallout of std::str stabilizationAlex Crichton-2/+2
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-4/+6
2014-12-15serialize: Change some FnOnce bounds to FnMutAlex Crichton-3/+3
2014-12-13libserialize: use unboxed closuresJorge Aparicio-100/+107
2014-11-06DTSify libserialize traitsJorge Aparicio-7/+14
2014-11-01libserialize: tuple-arity should be provided to `Decoder::read_tuple`Dan Burkert-6/+11
2014-10-27alloc: Make deriving more friendly with ArcAlex Crichton-1/+1
2014-10-26Added Encodable and Decodable for Arc<T>.Colin Sherratt-0/+13
2014-10-02serialize: remove proxy impls for Gc<T>.Eduard Burtescu-13/+0
2014-09-23use emit_tuple_arg while serializing tuplesDan Burkert-1/+1
2014-08-30Unify non-snake-case lints and non-uppercase statics lintsP1start-2/+2
2014-08-10remove outdated commentChuck Ries-2/+0
2014-07-31libserialize: add `error()` to `Decoder`Andrew Poelstra-0/+3
2014-07-07Implemented Decodable/Encodable for Cell and RefCell. Fixes #15395mitchmindtree-0/+30
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-1/+1
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-26/+0
2014-06-11rustc: Update how Gc<T> is recognizedAlex Crichton-4/+5
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-5/+5
2014-05-24Removed unnecessary macro declarationAdolfo OchagavĂ­a-4/+0
2014-05-16libserialize: Remove all uses of `~str` from `libserialize`.Patrick Walton-14/+2
2014-05-08Restore Decodable impl for ~[T]Kevin Ballard-0/+15
2014-05-08Handle fallout in libserializeKevin Ballard-18/+5
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-3/+3
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-1/+1
2014-04-30Add serialization support for StrBufHerman J. Radtke III-0/+12