From d30fb2f4b10ae7a49708e087af86b3c059da6070 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 14 Aug 2025 09:10:32 -0500 Subject: [PATCH] no-op change to test --- src/github.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/github.rs b/src/github.rs index 5db22472..9c9ee3fa 100644 --- a/src/github.rs +++ b/src/github.rs @@ -4,22 +4,22 @@ use { crate::release::{ - bootstrap_llvm, produce_install_only, produce_install_only_stripped, RELEASE_TRIPLES, + RELEASE_TRIPLES, bootstrap_llvm, produce_install_only, produce_install_only_stripped, }, - anyhow::{anyhow, Result}, + anyhow::{Result, anyhow}, bytes::Bytes, clap::ArgMatches, futures::StreamExt, octocrab::{ + Octocrab, OctocrabBuilder, models::{repos::Release, workflows::WorkflowListArtifact}, params::actions::ArchiveFormat, - Octocrab, OctocrabBuilder, }, rayon::prelude::*, reqwest::{Client, StatusCode}, reqwest_retry::{ - default_on_request_failure, policies::ExponentialBackoff, RetryPolicy, Retryable, - RetryableStrategy, + RetryPolicy, Retryable, RetryableStrategy, default_on_request_failure, + policies::ExponentialBackoff, }, sha2::{Digest, Sha256}, std::{ @@ -268,6 +268,7 @@ pub async fn command_fetch_release_distributions(args: &ArgMatches) -> Result<() fs.push(fetch_artifact(&client, org, repo, artifact)); } + } let mut buffered = futures::stream::iter(fs).buffer_unordered(24);