| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-14 | Rename core::comm to core::oldcomm | Brian Anderson | -111/+110 | |
| 2012-12-10 | Minor cleanups to pipes and serialization | Brian Anderson | -2/+2 | |
| 2012-12-04 | librustc: Implement moves based on type. r=nmatsakis | Patrick Walton | -3/+3 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-29 | impls of traits cannot define methods on the anonymous trait | Brian Anderson | -3/+0 | |
| 2012-11-29 | librustc: Eliminate most expressions of the form `a.b()` that are not method ↵ | Patrick Walton | -1/+1 | |
| calls. rs=refactoring | ||||
| 2012-11-29 | librustc: Make the Drop trait use explicit self | Patrick Walton | -4/+4 | |
| 2012-11-14 | Convert libstd to use the Drop trait | Ben Striegel | -2/+5 | |
| 2012-11-14 | Revert "Convert libstd to use the Drop trait" | Brian Anderson | -5/+2 | |
| This reverts commit 28c7a251514919a2d7bdf6c67b8edf5eed9043db. | ||||
| 2012-11-14 | Convert libstd to use the Drop trait | Ben Striegel | -2/+5 | |
| 2012-11-08 | std: Eliminate copy warning | Brian Anderson | -1/+1 | |
| 2012-11-07 | Fix whitespace issues from previous commits. | a_m0d | -2/+48 | |
| Also added test for #3891. | ||||
| 2012-11-06 | Fix trailing whitespace issues | a_m0d | -3/+3 | |
| 2012-11-06 | Add end_of_file handling to TcpBufferedSocket. | a_m0d | -4/+16 | |
| This fixes #3891. Also removed debug!(...) statement from socket destructor which causes a crash when the logging level is set to debug. | ||||
| 2012-10-20 | Long lines | Brian Anderson | -1/+2 | |
| 2012-10-20 | std: Use unique ports in tcp tests | Brian Anderson | -2/+2 | |
| 2012-10-20 | std: rename getpeername to get_peer_addr | Luqman Aden | -9/+12 | |
| 2012-10-20 | std: Add test for getpeername | Brian Anderson | -0/+55 | |
| 2012-10-20 | uv: use just getpeername for both ipv4 and ipv6. | Luqman Aden | -12/+22 | |
| 2012-10-20 | uv: implement a way to get client's ip/port. | Luqman Aden | -0/+16 | |
| 2012-10-12 | Make moves explicit in std tests | Tim Chevalier | -1/+2 | |
| 2012-10-11 | Remove comment that is now false | Tim Chevalier | -4/+2 | |
| 2012-10-05 | Silence most of the remaining warnings | Brian Anderson | -1/+2 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -10/+11 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -15/+15 | |
| 2012-10-03 | De-export net::*. Part of #3583. | Graydon Hoare | -35/+17 | |
| 2012-10-03 | Remove uses of + mode from libstd | Tim Chevalier | -7/+7 | |
| More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot. | ||||
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -4/+4 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -21/+21 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 2012-09-28 | std: More demoding | Brian Anderson | -1/+1 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-28 | Fix missed pattern on std::net_tcp. | Graydon Hoare | -1/+1 | |
| 2012-09-28 | Long lines | Brian Anderson | -2/+3 | |
| 2012-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -17/+17 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -2/+2 | |
| 2012-09-25 | Demode core::result | Brian Anderson | -14/+14 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+5 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | std: Mostly demode net::tcp | Brian Anderson | -30/+30 | |
| 2012-09-15 | vec::u8 => vec::bytes (#3444) | Erick Tryzelaar | -1/+1 | |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -2/+2 | |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -1/+1 | |
| Fixes #3261 Fixes #3443 | ||||
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -8/+11 | |
| 2012-09-10 | Make remaining moves explicit in libstd | Tim Chevalier | -4/+4 | |
| 2012-09-09 | libstd: Fix botched exports for net_tcp | Patrick Walton | -1/+1 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -2/+2 | |
| 2012-09-04 | std: Remove struct ctors | Brian Anderson | -2/+12 | |
| 2012-09-04 | Demode libstd/net_ip.rs | Kevin Cantu | -2/+2 | |
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -8/+8 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -1/+1 | |
| Closes #3302 | ||||
| 2012-08-31 | std: Camel case net modules | Brian Anderson | -146/+146 | |
