| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-11 | Make to_str pure and fix const parameters for str-mutating functions | Tim Chevalier | -7/+13 | |
| Two separate changes that got intertwined (sorry): Make to_str pure. Closes #3691 In str, change functions like push_char to take an &mut str instead of an &str. Closes #3710 | ||||
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -6/+6 | |
| 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-03 | De-export net::*. Part of #3583. | Graydon Hoare | -22/+13 | |
| 2012-10-03 | Remove uses of + mode from libstd | Tim Chevalier | -6/+6 | |
| 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 | -1/+1 | |
| 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-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -2/+1 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -1/+1 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -1/+1 | |
| 2012-09-25 | Demode core::result | Brian Anderson | -16/+16 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -43/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -7/+7 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -13/+13 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+43 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -3/+3 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -7/+5 | |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -1/+1 | |
| 2012-09-15 | int/uint parse_buf => parse_bytes (#3444) | Erick Tryzelaar | -2/+2 | |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -4/+4 | |
| also, change DVec() to work with imm vectors rather than mut ones | ||||
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -1/+1 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -3/+3 | |
| 2012-09-10 | Provide naive implementations of cmp::Eq and to_bytes::IterBytes for ↵ | Brian J. Burg | -0/+23 | |
| net::url::Url | ||||
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -4/+4 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+2 | |
| 2012-09-04 | Demode libstd/net_url.rs | Kevin Cantu | -17/+20 | |
| 2012-09-04 | std: Fix net::url constructor names | Brian Anderson | -5/+5 | |
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -8/+7 | |
| 2012-09-03 | libstd: Make URL parsing not require unique strings, and have URLs implement ↵ | Patrick Walton | -7/+19 | |
| FromStr. I considered changing FromStr to return a Result<E> parameterized over an error type E, but I decided that was premature abstraction. If you want the URL parsing error, call url::from_str() directly. | ||||
| 2012-09-03 | libstd: Export query_to_str from net::url | Patrick Walton | -0/+1 | |
| 2012-09-03 | libstd: Export the url() constructor from net_url | Patrick Walton | -1/+1 | |
| 2012-09-03 | libstd: Make net_url::encode no longer require a unique string | Patrick Walton | -27/+27 | |
| 2012-09-02 | libstd: Make URLs structs | Patrick Walton | -3/+3 | |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -10/+10 | |
| 2012-08-31 | std: Camel case net modules | Brian Anderson | -72/+72 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -10/+29 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -5/+5 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -31/+31 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -34/+34 | |
| 2012-08-25 | libstd: Don't make task-local GC data when creating TCP streams. | Patrick Walton | -1/+1 | |
| This exposed an ICE in a test; it's commented out for now. | ||||
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -1/+1 | |
| Closes #3245 | ||||
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -3/+3 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -1/+1 | |
| 2012-08-13 | core: Camel case some lesser-used modules | Brian Anderson | -1/+1 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -3/+3 | |
| 2012-08-06 | std: URL paths can contain dashes | Brian Anderson | -1/+9 | |
| 2012-08-06 | std: Parse underscores in url paths | Brian Anderson | -1/+10 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -51/+51 | |
| 2012-08-05 | std: Some fixes to url parsing | Brian Anderson | -2/+18 | |
| 2012-08-05 | std: URLs without schemes parse as errors. Closes #3112 | Brian Anderson | -1/+6 | |
| 2012-08-03 | Long lines | Brian Anderson | -1/+2 | |
