add cargo fmt + cargo clippy to rust workflow

This commit is contained in:
Ferdinand Schober
2023-12-18 21:27:53 +01:00
parent 9f23e1a75d
commit 4600db7af8
6 changed files with 29 additions and 11 deletions

View File

@@ -13,7 +13,7 @@ pub struct X11Producer {}
impl X11Producer {
pub fn new() -> Result<Self> {
return Err(anyhow!("not implemented"));
Err(anyhow!("not implemented"))
}
}