Uh oh!
There was an error while loading. Please reload this page.
std: Fix tracking issues and clean deprecated APIs - #32112
Conversation
alexcrichton
commented
Mar 8, 2016
r? @aturon |
138fbf4 to
d481d39Comparebors
commented
Mar 11, 2016
☔ The latest upstream changes (presumably #32133) made this pull request unmergeable. Please resolve the merge conflicts. |
c802813 to
d80fb96Compareaturon
commented
Mar 11, 2016
r=me, very nice. |
alexcrichton
commented
Mar 12, 2016
@bors: r=aturon 2c54926a1cc661e42b00c1cebe7a4ccb643cbf65 |
bors
commented
Mar 12, 2016
☔ The latest upstream changes (presumably #32200) made this pull request unmergeable. Please resolve the merge conflicts. |
Don't want to pollute the source tree!
This isn't exported so it doesn't need a tag.
These are all insta-stable anyway, so just properly tag them.
The referenced issues here were both closed, so hook up a new issue which tracks specifically the prelude traits being unstable.
The listed tracking issue was hooked up to the wrong location by accident.
alexcrichton
commented
Mar 12, 2016
@bors: r=aturon 95812ac |
sfackler
commented
Mar 12, 2016
Travis is unhappy: https://travis-ci.org/rust-lang/rust/builds/115483851#L1725 |
bors
commented
Mar 12, 2016
⌛ Testing commit 95812ac with merge 08d32fa... |
Manishearth
commented
Mar 12, 2016
|
bors
commented
Mar 12, 2016
⛄ The build was interrupted to prioritize another pull request. |
bors
commented
Mar 12, 2016
⌛ Testing commit 95812ac with merge 51644a9... |
bors
commented
Mar 12, 2016
💔 Test failed - auto-win-msvc-32-opt |
alexcrichton
commented
Mar 12, 2016
@bors: r=aturon c2c5092 |
bors
commented
Mar 12, 2016
⌛ Testing commit c2c5092 with merge b5241a8... |
bors
commented
Mar 12, 2016
💔 Test failed - auto-linux-64-x-android-t |
Removes all unstable and deprecated APIs prior to the 1.8 release. All APIs that are deprecated in the 1.8 release are sticking around for the rest of this cycle. Some notable changes are: * The `dynamic_lib` module was moved into `rustc_back` as the compiler still relies on a few bits and pieces. * The `DebugTuple` formatter now special-cases an empty struct name with only one field to append a trailing comma.
alexcrichton
commented
Mar 12, 2016
bors
commented
Mar 12, 2016
⌛ Testing commit b53764c with merge a2c56de... |
std: Fix tracking issues and clean deprecated APIs This PR fixes up a number of discrepancies found with tracking issues (some closed, some needed new ones, etc), and also cleans out all pre-1.8 deprecated APIs. The big beast here was dealing with `std::dynamic_lib`, and via many applications of a large hammer it's now out of the standard library.
This PR fixes up a number of discrepancies found with tracking issues (some closed, some needed new ones, etc), and also cleans out all pre-1.8 deprecated APIs. The big beast here was dealing with
std::dynamic_lib, and via many applications of a large hammer it's now out of the standard library.