summary refs log tree commit diff
path: root/src/libextra
AgeCommit message (Expand)AuthorLines
2013-06-24Implement the fixed output size versions of the SHA-2 digest functions.Palmer Cox-0/+1127
2013-06-24Create a Digest trait for common methods on digests and convert the SHA-1 imp...Palmer Cox-37/+119
2013-06-24Improve the SHA-1 implementationPalmer Cox-237/+206
2013-06-23Create a crypto submodule and move the SHA-1 implementation into it.Palmer Cox-1/+4
2013-06-24Changed Arena API to make it usable once more.Matthijs Hofstra-11/+11
2013-06-23auto merge of #7258 : huonw/rust/7256, r=bstriebors-0/+3
2013-06-23Remove unused TyDesc parameter from the glue functionsPhilipp Brüschweiler-2/+14
2013-06-23Remove rust_call_tydesc_gluePhilipp Brüschweiler-24/+8
2013-06-23Remove intrinsic modulePhilipp Brüschweiler-25/+38
2013-06-23vec: remove BaseIter implementationDaniel Micay-70/+79
2013-06-22replaced some 'std::' with 'extra::' in commentsreus-14/+14
2013-06-21vec: replace `position` with `iter().position_`Daniel Micay-2/+2
2013-06-21vec: rm old_iter implementations, except BaseIterDaniel Micay-30/+31
2013-06-21vec: remove each_constDaniel Micay-4/+4
2013-06-20auto merge of #7161 : kballard/rust/terminfo-parm-format, r=thestingerbors-31/+243
2013-06-21extra: Add a testcase for #7256.Huon Wilson-0/+3
2013-06-21libextra: cleanup warningsJames Miller-147/+134
2013-06-21Remove all #[cfg(stage0)]-protected codeJames Miller-9/+1
2013-06-18xfail std::num::complex::test_norm on x86, r=burningtree.Graydon Hoare-0/+2
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-109/+109
2013-06-18Support printf formats in terminfo stringsKevin Ballard-31/+243
2013-06-17Reproduce text changes from @brson PR 7176 and fix a typo thereinRalph Bodenner-4/+7
2013-06-16Update doc references to new names for std, extra, and std::libcRalph Bodenner-6/+6
2013-06-16Remove moves from *T and implement in another wayNiko Matsakis-1/+1
2013-06-16Add copies to type params with Copy boundNiko Matsakis-39/+40
2013-06-16auto merge of #7160 : kballard/rust/terminfo-parm-i-fix, r=thestingerbors-3/+14
2013-06-16auto merge of #7123 : huonw/rust/more-str, r=thestingerbors-20/+2
2013-06-16remove unused importsHuon Wilson-18/+1
2013-06-15rm vec::uniq_lenDaniel Micay-17/+14
2013-06-16std: continue improving the comparison trait impls for str.Huon Wilson-2/+1
2013-06-15Fix terminfo::param %i opKevin Ballard-3/+14
2013-06-15auto merge of #7109 : bblum/rust/rwlocks, r=brsonbors-86/+221
2013-06-15auto merge of #7133 : kballard/rust/terminfo-parm, r=thestingerbors-97/+321
2013-06-14rm MutableIterDaniel Micay-1/+1
2013-06-14add IteratorUtil to the preludeDaniel Micay-20/+2
2013-06-14Fix line lengths in terminfoKevin Ballard-6/+12
2013-06-14Implement terminfo param conditionalsKevin Ballard-18/+129
2013-06-14Fix a bunch of failure cases in terminfoKevin Ballard-84/+161
2013-06-14Don't require &mut [Param] with terminfo::parm::expand()Kevin Ballard-7/+11
2013-06-14Tweak terminfo::parm::expand function signatureKevin Ballard-16/+27
2013-06-14Tweak new terminfo logical operator supportKevin Ballard-27/+12
2013-06-14Various terminfo parameterization changesCorey Richardson-4/+34
2013-06-13Revert "std: convert {vec,str}::to_owned to methods."Brian Anderson-27/+28
2013-06-13Improve comments in sync and arc a bit more.Ben Blum-7/+9
2013-06-13Change sync::RWlock implementation to use atomic uint instead of exclusive, f...Ben Blum-57/+80
2013-06-13Add a test case for #7065.Ben Blum-0/+62
2013-06-13Thread order_lock through rwlock condvars for reacquiring access_lock. Fixes ...Ben Blum-22/+72
2013-06-12remove bitrotted cant_nest field from RWARC (the #[mutable] tag suffices)Ben Blum-3/+1
2013-06-12std: generalise .trim_chars to use CharEq.Huon Wilson-1/+1
2013-06-12std: convert str::replace to a method.Huon Wilson-2/+1