From cdcca1cd7a81a183874aa145c310f65ca3859560 Mon Sep 17 00:00:00 2001 From: Mathias Koch Date: Tue, 29 Aug 2023 08:50:12 +0200 Subject: [PATCH] chore(*): add feature gates for module timing for lara-r6 & toby-r2 (#81) * Add feature gates for module timing for lara-r6 & toby-r2 * Bump embedded-hal to rc.1 --- ublox-cellular/Cargo.toml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/ublox-cellular/Cargo.toml b/ublox-cellular/Cargo.toml index 88955fc..f46981c 100644 --- a/ublox-cellular/Cargo.toml +++ b/ublox-cellular/Cargo.toml @@ -16,8 +16,12 @@ 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.11" +atat = { git = "https://github.com/BlackbirdHQ/atat", rev = "70283be", features = [ + "derive", + "defmt", + "bytes", +] } +embedded-hal = "=1.0.0-rc.1" embedded-nal = "0.6" fugit = { version = "0.3" } fugit-timer = { version = "0.1.3" } @@ -40,7 +44,13 @@ default = ["socket-udp", "socket-tcp"] async = ["atat/async"] # Use `defmt-impl to enable defmt based logging -defmt-impl = ["defmt", "ublox-sockets/defmt", "fugit/defmt", "atat/defmt", "heapless/defmt-impl"] +defmt-impl = [ + "defmt", + "ublox-sockets/defmt", + "fugit/defmt", + "atat/defmt", + "heapless/defmt-impl", +] # Use `log-impl` to enable log based logging log-impl = ["log", "ublox-sockets/log", "atat/log"]