Revert "chore: Bump Rust to 1.89 (#35788)" (#35843)

This reverts commit efba2cbfd3.

Unfortunately, the Docker image for 1.89 has not shown up yet. Once it
has, we should re-land this.

Release Notes:

- N/A
This commit is contained in:
Mikayla Maki 2025-08-07 16:55:15 -07:00 committed by GitHub
parent 3d662ee282
commit c7d641ecb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 55 additions and 35 deletions

View file

@ -402,11 +402,11 @@ impl GitRepository for FakeGitRepository {
&self,
_paths: Vec<RepoPath>,
_env: Arc<HashMap<String, String>>,
) -> BoxFuture<'_, Result<()>> {
) -> BoxFuture<Result<()>> {
unimplemented!()
}
fn stash_pop(&self, _env: Arc<HashMap<String, String>>) -> BoxFuture<'_, Result<()>> {
fn stash_pop(&self, _env: Arc<HashMap<String, String>>) -> BoxFuture<Result<()>> {
unimplemented!()
}