1. e67c48a remove `each` from vec, HashMap and HashSet by Daniel Micay · 12 years ago
  2. d2e9912 vec: remove BaseIter implementation by Daniel Micay · 12 years ago
  3. 883c966 vec: replace `position` with `iter().position_` by Daniel Micay · 12 years ago
  4. 585f5f7 add IteratorUtil to the prelude by Daniel Micay · 12 years ago
  5. 1553874 std: convert str::reserve* to methods, and methodise str::push_*. by Huon Wilson · 12 years ago
  6. b29cd22 std: replace str::all/any fns and methods with iterators by Huon Wilson · 12 years ago
  7. 4b806b4 std: remove each_char* fns and methods from str, replaced by iterators. by Huon Wilson · 12 years ago
  8. 5fb2546 Remove all uses of `pub impl`. rs=style by Patrick Walton · 12 years ago
  9. 7a1a408 Remove copy bindings from patterns. by Niko Matsakis · 12 years ago
  10. 3956850 libextra: Require documentation by default by Alex Crichton · 12 years ago
  11. 206ab89 librustc: Stop reexporting the standard modules from prelude. by Patrick Walton · 12 years ago
  12. b04c40b Silence various warnings throughout test modules by Alex Crichton · 12 years ago
  13. 8f80323 Remove unnecessary allocations flagged by lint by Seo Sanghyeon · 12 years ago
  14. 609a9e6 cleanup warnings from libextra by Erick Tryzelaar · 12 years ago
  15. ee52865 test: Update tests and import the prelude in some more places. by Patrick Walton · 12 years ago
  16. f3723cf libextra: Rename the actual metadata names of libcore to libstd and libstd to libextra by Patrick Walton · 12 years ago
  17. 0c820d4 libstd: Rename libcore to libstd and libstd to libextra; update makefiles. by Patrick Walton · 12 years ago[Renamed from src/libstd/json.rs]
  18. 82fa001 Remove all unnecessary allocations (as flagged by lint) by Alex Crichton · 12 years ago
  19. 5dc5efe syntax: deprecate #[auto_{en,de}code] in favour of #[deriving({En,De}codable)]. by Huon Wilson · 12 years ago
  20. bdc182c Use static string with fail!() and remove fail!(fmt!()) by Björn Steinbrink · 12 years ago
  21. ed41864 Warning police by Tim Chevalier · 12 years ago
  22. c752241 libstd: Remove some residual mutable fields by Patrick Walton · 12 years ago
  23. 8081e8d Register snapshots by Brian Anderson · 12 years ago
  24. dc5df61 librustc: Update the serializer to work properly with INHTWAMA, removing mutable fields in the process by Patrick Walton · 12 years ago
  25. f792bab only use #[no_core] in libcore by Daniel Micay · 12 years ago
  26. f3ab67e syntax: add {read,emit}_enum_struct_variant{,_field} by Erick Tryzelaar · 12 years ago
  27. e31f7b7 std: add serialize {read,emit}_tuple{,_arg,_struct,_struct_arg} by Erick Tryzelaar · 12 years ago
  28. 419f6ac std: rename {read,emit}_field to {read,emit}_struct_field by Erick Tryzelaar · 12 years ago
  29. 97cc571 std: clean up the order of {De,En}codable methods by Erick Tryzelaar · 12 years ago
  30. 5606fc0 Revert map.each to something which takes two parameters by Niko Matsakis · 12 years ago
  31. 255193c Removing no longer needed unsafe blocks by Alex Crichton · 12 years ago
  32. 3136fba Removing some mutable fields in libstd by Alex Crichton · 12 years ago
  33. cc148b5 rename Linear{Map,Set} => Hash{Map,Set} by Daniel Micay · 12 years ago
  34. 44029a5 hashmap: rm linear namespace by Daniel Micay · 12 years ago
  35. 5b7d608 std: add more json decoder tests. by Erick Tryzelaar · 12 years ago
  36. 9bbf384 std: clean up the json pretty printer tests by Erick Tryzelaar · 12 years ago
  37. 529ae38 Merge remote-tracking branch 'remotes/origin/incoming' into serial by Erick Tryzelaar · 12 years ago
  38. 518c295 Register snapshots by Brian Anderson · 12 years ago
  39. bdef3f1 std: fix json deserializing vectors and a test by Erick Tryzelaar · 12 years ago
  40. d1a83e6 std: add Encoder::emit_map and Decoder::read_map by Erick Tryzelaar · 12 years ago
  41. 90b3658 std: remove Encoder::read_rec and Decoder::emit_rec by Erick Tryzelaar · 12 years ago
  42. e99cdcf std: remove Encoder::emit_tup{,_elt} and Decoder::read_tup{,_elt} by Erick Tryzelaar · 12 years ago
  43. 590bbce std: remove Encoder::emit_{owned,managed}_vec and Decoder::read_{owned,managed}_vec by Erick Tryzelaar · 12 years ago
  44. 63fc887 std: remove Encoder::emit_{owned,managed} and Decoder::read_{owned,managed} by Erick Tryzelaar · 12 years ago
  45. 8b43c62 std: remove Encoder::emit_{owned,managed}_str and Decoder::read_{owned,managed}_str by Erick Tryzelaar · 12 years ago
  46. b05e148 std: change Decoder::read_option to return a generic type by Erick Tryzelaar · 12 years ago
  47. aa779c1 std: change Decoder::read_option to return a generic type by Erick Tryzelaar · 12 years ago
  48. c317d3f std: add some better failure msgs to json by Erick Tryzelaar · 12 years ago
  49. 4e9a63f std: add tests for decoding json enums by Erick Tryzelaar · 12 years ago
  50. 4d6dcef std: Decode::read_enum_variant should pass in the variant names by Erick Tryzelaar · 12 years ago
  51. 478e449 std: add option type directly to serialize::{En,De}code by Erick Tryzelaar · 12 years ago
  52. 4d995e6 std: change default json enum encoder to use strings or a flat vec by Erick Tryzelaar · 12 years ago
  53. b10b8c3 std: Add tests for json decoding options by Erick Tryzelaar · 12 years ago
  54. c9188c8 std: fix json PrettyEncoder and add tests by Erick Tryzelaar · 12 years ago
  55. 6cf99fa std: change fail_unless to assert_eq in json.rs by Erick Tryzelaar · 12 years ago
  56. b290863 std: clean json test imports by Erick Tryzelaar · 12 years ago
  57. 8b56a83 librustc: Modify all code to use new lifetime binder syntax by Patrick Walton · 12 years ago
  58. fa77728 Remove unused imports throughout by Alex Crichton · 12 years ago
  59. b9de2b5 Switched over a bunch of splitting funktions to non-allocating iterators by Marvin Löbel · 12 years ago
  60. 45677ee replace impls with `deriving` where applicable by Andrew Paseltiner · 12 years ago
  61. 6d81307 librustc: Add explicit lifetime binders and new lifetime notation in core/std/syntax/rustc by Patrick Walton · 12 years ago
  62. c108409 libstd: Remove all uses of `pure` from libstd. rs=depure by Patrick Walton · 12 years ago
  63. ec8345b auto merge of #5407 : jbclements/rust/add-assert-eq-macro, r=jbclements by bors · 12 years ago
  64. 3cd65c23 change some uses of fail_unless to assert_eq by John Clements · 12 years ago
  65. cefecd8 core: add str::each{,i}_reverse by Erick Tryzelaar · 12 years ago
  66. e78f2e2 librustc: Make the compiler ignore purity. by Patrick Walton · 12 years ago
  67. 352c070 librustc: Convert all uses of old lifetime notation to new lifetime notation. rs=delifetiming by Patrick Walton · 12 years ago
  68. b1c6998 librustc: Don't accept `as Trait` anymore; fix all occurrences of it. by Patrick Walton · 12 years ago
  69. d18f785 librustc: Replace all uses of `fn()` with `&fn()`. rs=defun by Patrick Walton · 12 years ago
  70. 62651df Fix dvec-related fallout in tests by Alex Crichton · 12 years ago
  71. 87f8642 std: Remove uses of DVec by Alex Crichton · 12 years ago
  72. d7e74b5 librustc: Convert all uses of `assert` over to `fail_unless!` by Patrick Walton · 12 years ago
  73. 0fed29c De-implicit-self libstd by Ben Striegel · 12 years ago
  74. 3168fe0 Add manual &self/ and &static/ and /&self declarations that by Niko Matsakis · 12 years ago
  75. 743cfce core: convert vec::{last,last_opt} to return references by Erick Tryzelaar · 12 years ago
  76. 2df07dd Fix implicit leaks of imports throughout libraries by Alex Crichton · 12 years ago
  77. 07c3f5c librustc: Forbid `pub` or `priv` before trait implementations by Patrick Walton · 12 years ago
  78. 27b0677 Cleanup, commenting, trivial renaming by John Clements · 12 years ago
  79. bf2a225 librustc: Separate most trait bounds with '+'. rs=plussing by Patrick Walton · 12 years ago
  80. bb833ca librustc: Stop parsing `impl Type : Trait` and fix several declarations that slipped through. r=tjc by Patrick Walton · 12 years ago
  81. 4cf51c2 libstd: Get rid of `move`. by Luqman Aden · 12 years ago
  82. af2f0ef auto merge of #4927 : sanxiyn/rust/remove-dvec, r=catamorphism by bors · 12 years ago
  83. 3c07d03 auto merge of #4934 : nickdesaulniers/rust/issue4524cleanup, r=brson by bors · 12 years ago
  84. 9143688 librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflipping by Patrick Walton · 12 years ago
  85. 4699ac6 Remove all final references to die! by Nick Desaulniers · 12 years ago
  86. 9324f49 Remove DVec from json by Seo Sanghyeon · 12 years ago
  87. 4445b38 Remove die!, raplace invocations with fail! Issue #4524 pt 3 by Nick Desaulniers · 12 years ago
  88. c05954a added issue for reference in FIXME by John Clements · 12 years ago
  89. 7736ed6 json tidy by John Clements · 12 years ago
  90. c952c04 re-special-case Option in JSON encoding by John Clements · 12 years ago
  91. f91160b json add enum encoder test case by John Clements · 12 years ago
  92. 0e9495b json bugfix by John Clements · 12 years ago
  93. 394f8ee tidy by John Clements · 12 years ago
  94. fe82374 json bugfixes by John Clements · 12 years ago
  95. 7659614 fix typos in sample code, add enum to json encoder, add test case by John Clements · 12 years ago
  96. d90abd5 auto merge of #4848 : nikomatsakis/rust/issue-4821-bad-kind-computation, r=catamorphism by bors · 12 years ago
  97. a380df8 Fix subtle error in caching during kind computation that could cause linear by Niko Matsakis · 12 years ago
  98. 9599cc8 implement BaseIter for LinearMap by Daniel Micay · 12 years ago
  99. a32498d Make ~fn non-copyable, make &fn copyable, split barefn/closure types, by Niko Matsakis · 12 years ago
  100. b91a51d remove issue #3148 workarounds (no longer needed) by Daniel Micay · 12 years ago