diff options
| author | Andres Vahter <andres@vahter.me> | 2024-01-10 21:15:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-10 19:15:07 +0000 |
| commit | af1b8e5d8b3974d87067d4224f4ef71177ca5c4d (patch) | |
| tree | 7811688d20e8e0fb4d8829caa0e81a08395a5e98 /rtic-time | |
| parent | efb82b7b05785352d0003b565f15e73ca4e656a1 (diff) | |
update to embedded-hal 1 (#879)
* update to eh1
* changelogs about embedded-hal 1.0
Diffstat (limited to 'rtic-time')
| -rw-r--r-- | rtic-time/CHANGELOG.md | 2 | ||||
| -rw-r--r-- | rtic-time/Cargo.toml | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/rtic-time/CHANGELOG.md b/rtic-time/CHANGELOG.md index 9bce0a7..e091762 100644 --- a/rtic-time/CHANGELOG.md +++ b/rtic-time/CHANGELOG.md @@ -11,6 +11,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top! ### Changed +- Using `embedded-hal` 1.0. + ### Fixed ## v1.2.0 - 2023-12-06 diff --git a/rtic-time/Cargo.toml b/rtic-time/Cargo.toml index 67619a3..239ec78 100644 --- a/rtic-time/Cargo.toml +++ b/rtic-time/Cargo.toml @@ -23,8 +23,8 @@ futures-util = { version = "0.3.25", default-features = false } rtic-common = { version = "1.0.0", path = "../rtic-common" } [dev-dependencies] -embedded-hal = { version = "1.0.0-rc.2" } -embedded-hal-async = { version = "1.0.0-rc.2" } +embedded-hal = { version = "1.0" } +embedded-hal-async = { version = "1.0" } fugit = "0.3.7" parking_lot = "0.12" cassette = "0.2" |
