From 55a57a361c78446d99c6384d5fd196a0a4a200d1 Mon Sep 17 00:00:00 2001 From: Mathias Date: Mon, 17 Apr 2023 11:56:36 +0200 Subject: [PATCH] Update to embedded-hal-alpha.10 --- ublox-cellular/Cargo.toml | 2 +- ublox-cellular/src/network.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ublox-cellular/Cargo.toml b/ublox-cellular/Cargo.toml index 42a5f28..ae16902 100644 --- a/ublox-cellular/Cargo.toml +++ b/ublox-cellular/Cargo.toml @@ -17,7 +17,7 @@ doctest = false [dependencies] # atat = { version = "0.18", features = ["derive", "bytes"] } atat = { git = "https://github.com/BlackbirdHQ/atat", rev = "70283be", features = ["derive", "defmt", "bytes"] } -embedded-hal = "=1.0.0-alpha.9" +embedded-hal = "=1.0.0-alpha.10" embedded-nal = "0.6" fugit = { version = "0.3" } fugit-timer = { version = "0.1.3" } diff --git a/ublox-cellular/src/network.rs b/ublox-cellular/src/network.rs index c379001..902f6b7 100644 --- a/ublox-cellular/src/network.rs +++ b/ublox-cellular/src/network.rs @@ -20,7 +20,6 @@ use crate::{ }; use atat::{atat_derive::AtatLen, blocking::AtatClient}; use fugit::{ExtU32, MinutesDurationU32, SecsDurationU32}; -use fugit_timer::Timer; use hash32_derive::Hash32; use serde::{Deserialize, Serialize}; @@ -542,6 +541,7 @@ mod tests { test_helpers::{MockAtClient, MockTimer}, }; use fugit::{MillisDurationU32, TimerInstantU32}; + use fugit_timer::Timer; const TIMER_HZ: u32 = 1000;