Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Standardize a single rust toolchain for all of CI #2374

Merged
merged 11 commits into from
Dec 10, 2024
Prev Previous commit
Next Next commit
Consistency is nice
EclecticGriffin committed Dec 10, 2024

Verified

This commit was signed with the committer’s verified signature.
EclecticGriffin Griffin Berlstein
commit de6c9eb303c97cb21b9caf8c979e5559d63e0d51
2 changes: 1 addition & 1 deletion calyx-ir/src/guard.rs
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ use std::{cmp::Ordering, hash::Hash, rc::Rc};
#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
pub struct Nothing;

impl std::fmt::Display for Nothing {
impl Display for Nothing {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "")
}

Unchanged files with check annotations Beta

}
}
impl ToString for OutputFile {

Check failure on line 51 in calyx-utils/src/out_file.rs

GitHub Actions / Check Formatting

direct implementation of `ToString`
fn to_string(&self) -> String {
match self {
OutputFile::Stdout => "-".to_string(),
}
}
impl ToString for PosString {

Check failure on line 33 in calyx-utils/src/pos_string.rs

GitHub Actions / Check Formatting

direct implementation of `ToString`
fn to_string(&self) -> String {
self.data.to_string()
}