Skip to content

Commit

Permalink
Make rustfmt and clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
lunabunn committed Jun 5, 2022
1 parent 282a418 commit 90def08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ impl Image {
height as _,
self.format,
self.kind,
glow::PixelUnpackData::Slice(&data),
glow::PixelUnpackData::Slice(data),
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
//! crashes or UB
#![warn(missing_docs)]

#![no_std]

extern crate alloc;

mod blend;
Expand Down

0 comments on commit 90def08

Please sign in to comment.