chore: Bump Rust version to 1.77 (#9631)

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-03-21 15:42:59 +01:00 committed by GitHub
parent 65152baa3f
commit 6184278faf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 11 additions and 7 deletions

View file

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