summary refs log tree commit diff
path: root/src/libworkcache
AgeCommit message (Collapse)AuthorLines
2014-03-31Bump version to 0.10Alex Crichton-1/+1
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-9/+9
Closes #2569
2014-03-27serialize: use ResultSean McArthur-11/+11
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-27Fix fallout of removing default boundsAlex Crichton-2/+2
This is all purely fallout of getting the previous commit to compile.
2014-03-24test: Update all tests with the sync changesAlex Crichton-16/+16
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-1/+1
It's now in the prelude.
2014-03-15Test fixes and rebase conflictsAlex Crichton-0/+2
This commit switches over the backtrace infrastructure from piggy-backing off the RUST_LOG environment variable to using the RUST_BACKTRACE environment variable (logging is now disabled in libstd).
2014-03-15Add rustdoc html crate infoSteven Fackler-0/+3
2014-03-14extra: Put the nail in the coffin, delete libextraAlex Crichton-0/+523
This commit shreds all remnants of libextra from the compiler and standard distribution. Two modules, c_vec/tempfile, were moved into libstd after some cleanup, and the other modules were moved to separate crates as seen fit. Closes #8784 Closes #12413 Closes #12576