Rollup merge of #71567 - Mark-Simulacrum:no-success, r=matthiaskrgr

Handle build completion message from Cargo

This was introduced in the recent bump to 1.44 bootstrap cargo

Fixes #71561.
This commit is contained in:
Tyler Mandry 2020-04-30 15:23:12 -07:00 committed by GitHub
commit 01fffff677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1012,4 +1012,7 @@ pub enum CargoMessage<'a> {
BuildScriptExecuted {
package_id: Cow<'a, str>,
},
BuildFinished {
success: bool,
},
}