Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in
which cargo vendor erroneously changed permissions of vendored
crates. This was fixed in Rust
1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all
cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are
potentially broken.
This change updates cargoSha256/cargoHash tree-wide.
Fixes#121994.
* Use latest version from master (as of 2021-02-03)
* Apply patch from https://github.com/raftario/licensor/pull/28 that
"fixes" the `license_and_name` test by bumping the year from 2020
to 2021, until the test implementation can be properly addressed
* This also includes a security update from
https://github.com/raftario/licensor/pull/8
* Instead of adding 2 more patches (one for the test fix, one for the
security update), using the latest commit from master seems to make
the most sense for now
* remove fetchpatch from inputs
Changes the default fetcher in the Rust Platform to be the newer
`fetchCargoTarball`, and changes every application using the current default to
instead opt out.
This commit does not change any hashes or cause any rebuilds. Once integrated,
we will start deleting the opt-outs and recomputing hashes.
See #79975 for details.