Skip to content

Commit 5b6e4a9

Browse files
committed
use pinned dependencies for RCs
otherwise cargo will update to newer RCs which will break the build. the update to 1.0.0-rc.2 will come in a follow-up commit (a new release of `stm32f4xx-hal` is needed to ensure that the example builds).
1 parent 2cc8b82 commit 5b6e4a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ keywords = ["tb6612fng", "driver", "motor", "controller", "embedded-hal-driver"]
1111
license = "MIT OR Apache-2.0"
1212

1313
[dependencies]
14-
embedded-hal = "1.0.0-rc.1"
14+
embedded-hal = "=1.0.0-rc.1"
1515

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

1818
[dev-dependencies]
19-
embedded-hal-mock = { version = "0.10.0-rc.2", features = ["eh1"] }
19+
embedded-hal-mock = { version = "=0.10.0-rc.2", features = ["eh1"] }

0 commit comments

Comments
 (0)