Skip to content

Commit

Permalink
Run cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rnestler committed Aug 17, 2020
1 parent 753bfcc commit 8800e05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,12 @@ extern crate embedded_hal as hal;
extern crate num_traits;

use byteorder::{BigEndian, ByteOrder};
use hal::blocking::delay::{DelayMs, DelayUs};
use hal::blocking::i2c::{Read, Write, WriteRead};
use crate::hal::blocking::delay::{DelayMs, DelayUs};
use crate::hal::blocking::i2c::{Read, Write, WriteRead};

mod types;

pub use types::{Measurement, RawSignals, Baseline, Humidity, FeatureSet, ProductType};
pub use crate::types::{Measurement, RawSignals, Baseline, Humidity, FeatureSet, ProductType};


const CRC8_POLYNOMIAL: u8 = 0x31;
Expand Down

0 comments on commit 8800e05

Please sign in to comment.