Skip to content

Commit

Permalink
Fix compatibility with Rust 1.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eldruin committed May 14, 2021
1 parent 947f7d0 commit f234d1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@

use core::marker::PhantomData;
mod mlx90614;
pub use mlx90614::wake_mlx90614;
pub use crate::mlx90614::wake_mlx90614;
mod mlx90615;
pub use mlx90615::wake_mlx90615;
pub use crate::mlx90615::wake_mlx90615;
mod types;
pub use crate::types::{ic, Error, SlaveAddr};
mod common;
Expand Down

0 comments on commit f234d1a

Please sign in to comment.