Revert "chore: Bump Rust version to 1.77 (#9631)" (#9658)

This reverts commit 6184278faf.

We can't upgrade to Rust 1.77 until there are Rust 1.77 Docker images
available
(https://github.com/docker-library/official-images/pull/16457).


Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-03-21 14:07:22 -04:00 committed by GitHub
parent b6201a34b9
commit d557f8e36c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 11 deletions

View file

@ -80,11 +80,8 @@ struct AvailableLanguage {
enum AvailableGrammar {
Native(tree_sitter::Language),
Loaded(#[allow(unused)] PathBuf, tree_sitter::Language),
Loading(
#[allow(unused)] PathBuf,
Vec<oneshot::Sender<Result<tree_sitter::Language>>>,
),
Loaded(#[allow(dead_code)] PathBuf, tree_sitter::Language),
Loading(PathBuf, Vec<oneshot::Sender<Result<tree_sitter::Language>>>),
Unloaded(PathBuf),
}