Update to Rust 1.52.1

Reviewed By: pcwalton, jsgf

Differential Revision: D28430635

fbshipit-source-id: b3a4f19623055547a2d6e7b704484dfc2aed459f
This commit is contained in:
David Tolnay 2021-05-19 22:12:37 -07:00 committed by Facebook GitHub Bot
parent d4f337c889
commit 0812a1deb8
10 changed files with 11 additions and 11 deletions

View File

@ -18,7 +18,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.51.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install system deps

View File

@ -16,7 +16,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.51.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install system deps

View File

@ -18,7 +18,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.50.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install Python 3.8

View File

@ -16,7 +16,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.50.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install Python 3.8

View File

@ -26,7 +26,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.50.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install Python 3.7

View File

@ -18,7 +18,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.50.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install Python 3.8

View File

@ -26,7 +26,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.50.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install system deps

View File

@ -18,7 +18,7 @@ jobs:
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.50.0
toolchain: 1.52.1
default: true
profile: minimal
- name: Install system deps

View File

@ -302,7 +302,7 @@ impl CreateChangeset {
let repoid = repo.get_repoid();
let complete_changesets = repo.get_changesets_object();
let bonsai_hg_mapping = repo.get_bonsai_hg_mapping().clone();
cloned!(repo);
let _repo = repo.clone();
let changeset_complete_fut = async move {
let ((hg_cs, bonsai_cs), _) = future::try_join(changeset, parents_complete).await?;

View File

@ -255,10 +255,10 @@ async fn bootstrap_repositories<'a>(
info!(&logger, "Creating {} repositories", config.repos.len());
let RepoConfigs { repos, common } = config;
let RepoConfigs { repos, common: _ } = config;
let repos = future::try_join_all(repos.into_iter().map(|(name, mut config)| {
borrowed!(env, common, mysql_options, blobstore_options);
borrowed!(env, mysql_options, blobstore_options);
let logger = logger.new(o!("repo" => name.clone()));