about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2014-05-07std: Add I/O timeouts to networking objectsAlex Crichton-15/+419
2014-05-07auto merge of #13964 : alexcrichton/rust/more-buffers, r=brsonbors-1/+63
2014-05-07auto merge of #13751 : alexcrichton/rust/io-close-read, r=brsonbors-14/+205
2014-05-07std: Add close_{read,write}() methods to I/OAlex Crichton-14/+205
2014-05-07Test fixes and rebase conflictsAlex Crichton-51/+12
2014-05-07core: Move Option::expect to libstd from libcoreAlex Crichton-4/+172
2014-05-07core: Inherit the cell moduleAlex Crichton-318/+3
2014-05-07core: Add unwrap()/unwrap_err() methods to ResultAlex Crichton-6/+327
2014-05-07core: Inherit the result moduleAlex Crichton-784/+21
2014-05-07core: Add a limited implementation of failureAlex Crichton-32/+12
2014-05-07std: Remove a glob to get std to compileAlex Crichton-1/+1
2014-05-07core: Inherit possible string functionalityAlex Crichton-1945/+122
2014-05-07core: Inherit necessary unicode functionalityAlex Crichton-4991/+1
2014-05-07core: Inherit non-allocating slice functionalityAlex Crichton-1554/+53
2014-05-07core: Inherit the specific numeric modulesAlex Crichton-1506/+77
2014-05-07core: Inherit what's possible from the num moduleAlex Crichton-849/+15
2014-05-07core: Inhert ~/@/& cmp traits, remove old modulesAlex Crichton-150/+1
2014-05-07core: Inherit the cmp moduleAlex Crichton-299/+12
2014-05-07core: Inherit the iter moduleAlex Crichton-3091/+15
2014-05-07core: Inherit the option moduleAlex Crichton-883/+10
2014-05-07core: Inherit the bool moduleAlex Crichton-305/+36
2014-05-07core: Inherit the tuple moduleAlex Crichton-351/+31
2014-05-07core: Inherit the clone moduleAlex Crichton-172/+1
2014-05-07core: Inherit the unit moduleAlex Crichton-53/+6
2014-05-07core: Inherit the default moduleAlex Crichton-27/+1
2014-05-07core: Inherit the raw moduleAlex Crichton-115/+1
2014-05-07core: Inherit the any moduleAlex Crichton-324/+9
2014-05-07core: Inherit the finally moduleAlex Crichton-160/+2
2014-05-07core: Inherit the char moduleAlex Crichton-846/+1
2014-05-07core: Inherit the container moduleAlex Crichton-109/+1
2014-05-07core: Inherit the ty moduleAlex Crichton-73/+1
2014-05-07core: Inherit the ops moduleAlex Crichton-575/+1
2014-05-07core: Inherit the kinds moduleAlex Crichton-282/+2
2014-05-07core: Inherit the cast moduleAlex Crichton-150/+1
2014-05-07core: Inherit the ptr moduleAlex Crichton-773/+2
2014-05-07core: Inherit the mem moduleAlex Crichton-462/+1
2014-05-07core: Inherit the intrinsics moduleAlex Crichton-488/+18
2014-05-07std: Implement the Buffer trait for some wrappersAlex Crichton-1/+63
2014-05-07auto merge of #13958 : pcwalton/rust/detilde, r=pcwaltonbors-291/+356
2014-05-07auto merge of #13914 : alexcrichton/rust/pile-o-rustdoc-fixes, r=brsonbors-8/+8
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-291/+356
2014-05-06auto merge of #13754 : alexcrichton/rust/net-experimental, r=brsonbors-1/+70
2014-05-06auto merge of #13897 : aturon/rust/issue-6085, r=bjzbors-61/+87
2014-05-05auto merge of #13934 : huonw/rust/transmute-mut, r=alexcrichtonbors-39/+64
2014-05-05auto merge of #13912 : seanmonstar/rust/logrecord, r=alexcrichtonbors-0/+6
2014-05-05Change std::io::FilePermission to a typesafe representationAaron Turon-36/+41
2014-05-05Add (unsafe) coercion from bits to std::bitflagsAaron Turon-0/+6
2014-05-05Allow attributes in std::bitflags::bitflags!Aaron Turon-25/+40
2014-05-05log: Logger receiveis a LogRecordSean McArthur-0/+6
2014-05-05std::comm: use Unsafe to avoid U.B. & -> &mut transmutes.Huon Wilson-34/+49