From f64a530408ecf129590d6916efb44327bdf365b6 Mon Sep 17 00:00:00 2001 From: Luca Date: Sun, 25 Jul 2021 18:21:29 +0200 Subject: [PATCH] Depend on `stm32f0xx-hal` git directly (PWM implementation not yet released) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4a1225f..7041b81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,4 +9,4 @@ readme = "README.md" cortex-m = "0.6.4" cortex-m-rt = "0.6.13" panic-halt = "0.2.0" -stm32f0xx-hal = { version = "0.17.1", features = ["rt", "stm32f072"] } +stm32f0xx-hal = { git = "https://github.com/stm32-rs/stm32f0xx-hal", rev = "73b0fac", features = ["rt", "stm32f072"] }