From ed2df41aada9fc671eb0b43523c823f36f26b12a Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Mon, 22 Jun 2020 18:07:37 +0200 Subject: Update dependencies --- Cargo.toml | 4 ++-- tests/common/mod.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4dbd293..6bb8548 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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)] -- cgit v1.2.3-54-g00ecf