Skip to content

Commit

Permalink
chore: add rustc 1.80 to supported version list
Browse files Browse the repository at this point in the history
  • Loading branch information
godzie44 committed May 8, 2024
1 parent 467aba1 commit 52104b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ macro_rules! version_switch {
}

/// Supported rustc version diapasons.
static SUPPORTED_RUSTC: [(Version, Version); 3] = [
static SUPPORTED_RUSTC: [(Version, Version); 4] = [
(Version((1, 75, 0)), Version((1, 75, u32::MAX))),
(Version((1, 76, 0)), Version((1, 76, u32::MAX))),
(Version((1, 77, 0)), Version((1, 77, u32::MAX))),
(Version((1, 78, 0)), Version((1, 78, u32::MAX))),
];

pub fn supported_versions_to_string() -> String {
Expand Down

0 comments on commit 52104b5

Please sign in to comment.