aboutsummaryrefslogtreecommitdiff
path: root/rtic-sync/Cargo.toml
diff options
context:
space:
mode:
authorAndres Vahter <andres@vahter.me>2024-01-10 21:15:07 +0200
committerGitHub <noreply@github.com>2024-01-10 19:15:07 +0000
commitaf1b8e5d8b3974d87067d4224f4ef71177ca5c4d (patch)
tree7811688d20e8e0fb4d8829caa0e81a08395a5e98 /rtic-sync/Cargo.toml
parentefb82b7b05785352d0003b565f15e73ca4e656a1 (diff)
update to embedded-hal 1 (#879)
* update to eh1 * changelogs about embedded-hal 1.0
Diffstat (limited to 'rtic-sync/Cargo.toml')
-rw-r--r--rtic-sync/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtic-sync/Cargo.toml b/rtic-sync/Cargo.toml
index 292230c..429c33e 100644
--- a/rtic-sync/Cargo.toml
+++ b/rtic-sync/Cargo.toml
@@ -25,9 +25,9 @@ heapless = "0.8"
critical-section = "1"
rtic-common = { version = "1.0.0", path = "../rtic-common" }
portable-atomic = { version = "1", default-features = false }
-embedded-hal = { version = "1.0.0-rc.2", optional = true }
-embedded-hal-async = { version = "1.0.0-rc.2", optional = true }
-embedded-hal-bus = { version = "0.1.0-rc.2", optional = true, features = ["async"] }
+embedded-hal = { version = "1.0", optional = true }
+embedded-hal-async = { version = "1.0", optional = true }
+embedded-hal-bus = { version = "0.1.0", optional = true, features = ["async"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros", "time"] }