Skip to content

Commit

Permalink
Merge pull request #27 from rursprung/fix-eh-1.0.0.rc1-build
Browse files Browse the repository at this point in the history
fix embedded-hal 1.0.0-rc.1 build
  • Loading branch information
rursprung authored Dec 11, 2023
2 parents 6b7493e + 5b6e4a9 commit cc7c994
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ keywords = ["tb6612fng", "driver", "motor", "controller", "embedded-hal-driver"]
license = "MIT OR Apache-2.0"

[dependencies]
embedded-hal = "1.0.0-rc.1"
embedded-hal = "=1.0.0-rc.1"

defmt = { version = "0.3", optional = true }

[dev-dependencies]
embedded-hal-mock = { version = "0.10.0-rc.2", features = ["eh1"] }
embedded-hal-mock = { version = "=0.10.0-rc.2", features = ["eh1"] }
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ A simple example for the STM32F4 microcontrollers is [available](examples/stm32f
For the changelog please see the dedicated [CHANGELOG.md](CHANGELOG.md).

## Roadmap to v1.0.0
This crate is already stable, however it's based on athe v1.0.0 release candidate version of [`embedded-hal`](https://github.com/rust-embedded/embedded-hal/),
This crate is already stable, however it's based on a release candidate version of [`embedded-hal`](https://github.com/rust-embedded/embedded-hal/),
making the API unstable (the change from 1.0.0-rc.1 to 1.0.0 of e-h will be breaking from a dependency management point of view).

See [the tracking issue](https://github.com/rursprung/tb6612fng-rs/issues/4) for the roadmap to v1.0.0.

## Minimum Supported Rust Version (MSRV)
Expand Down

0 comments on commit cc7c994

Please sign in to comment.