diff options
| author | Diego Barrios Romero <eldruin@gmail.com> | 2020-06-22 18:07:37 +0200 | 
|---|---|---|
| committer | Diego Barrios Romero <eldruin@gmail.com> | 2020-06-22 18:07:37 +0200 | 
| commit | ed2df41aada9fc671eb0b43523c823f36f26b12a (patch) | |
| tree | d81a43ac6e568f58ea4c3fe0e79fcb6df53d1cad | |
| parent | 2ef9f73a3761e4d0069c3b50cff50e5c0207f33b (diff) | |
| download | ads1x1x-async-ed2df41aada9fc671eb0b43523c823f36f26b12a.tar.gz ads1x1x-async-ed2df41aada9fc671eb0b43523c823f36f26b12a.tar.xz ads1x1x-async-ed2df41aada9fc671eb0b43523c823f36f26b12a.zip | |
Update dependencies
| -rw-r--r-- | Cargo.toml | 4 | ||||
| -rw-r--r-- | tests/common/mod.rs | 2 | 
2 files changed, 3 insertions, 3 deletions
| @@ -29,8 +29,8 @@ nb = "0.1"  embedded-hal = { version = "0.2.2", features = ["unproven"] }  [dev-dependencies] -linux-embedded-hal = "0.2" -embedded-hal-mock = "0.4" +linux-embedded-hal = "0.3" +embedded-hal-mock = "0.7"  [profile.release]  lto = true diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 223f97a..c9ca2a1 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -72,7 +72,7 @@ macro_rules! impl_new_destroy {      ($ic:ident, $create:ident, $destroy:ident, $conv:ty, $trans:ty, $iface:ty) => {          #[allow(unused)]          pub fn $create(transactions: &[$trans]) -> Ads1x1x<$iface, ic::$ic, $conv, mode::OneShot> { -            Ads1x1x::$create(I2cMock::new(&transactions), SlaveAddr::default()) +            Ads1x1x::$create(I2cMock::new(transactions), SlaveAddr::default())          }          #[allow(unused)] | 
