Update to e-hal 1.0

This commit is contained in:
ivmarkov 2024-01-10 07:47:53 +00:00
parent 5532468962
commit 27cd194097
2 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [?.??.?] - ????-??-??
* MSRV 1.75; remove the nightly feature flag from all async trait implementations
* Update public dependencies `e-hal` to 1.0.0-rc3 and `embassy-sync` to 0.5 and private dependency `heapless` to 0.8
* Update public dependencies `e-hal` to 1.0.0 and `embassy-sync` to 0.5 and private dependency `heapless` to 0.8
* Allow `cargo check --all-features` to work correctly (there used to be a build error when both the `esp-idf-sys` and the `riscv-ulp-hal` features were enabled)
* #351 - Remove the `OutputPin` requirement from SPI SDI pin
* #350 - Not checking for ESP_FAIL in AsyncCanDriver::transmit

View File

@ -37,12 +37,12 @@ binstart = ["esp-idf-sys/binstart"]
libstart = ["esp-idf-sys/libstart"]
[dependencies]
nb = "1.0.0"
nb = "1"
embedded-can = "0.4.1"
embedded-hal = "=1.0.0-rc.3"
embedded-hal = "1"
embedded-hal-0-2 = { package = "embedded-hal", version = "0.2.7", features = ["unproven"] }
embedded-hal-nb = "=1.0.0-rc.3"
embedded-hal-async = "=1.0.0-rc.3"
embedded-hal-nb = "1"
embedded-hal-async = "1"
embedded-io = "0.6"
embedded-io-async = "0.6"
esp-idf-sys = { version = "0.33.7", optional = true, default-features = false }