summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Barrios Romero <eldruin@gmail.com>2020-06-22 18:07:37 +0200
committerDiego Barrios Romero <eldruin@gmail.com>2020-06-22 18:07:37 +0200
commited2df41aada9fc671eb0b43523c823f36f26b12a (patch)
treed81a43ac6e568f58ea4c3fe0e79fcb6df53d1cad
parent2ef9f73a3761e4d0069c3b50cff50e5c0207f33b (diff)
downloadads1x1x-async-ed2df41aada9fc671eb0b43523c823f36f26b12a.tar.gz
ads1x1x-async-ed2df41aada9fc671eb0b43523c823f36f26b12a.tar.xz
ads1x1x-async-ed2df41aada9fc671eb0b43523c823f36f26b12a.zip
Update dependencies
-rw-r--r--Cargo.toml4
-rw-r--r--tests/common/mod.rs2
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)]