diff --git a/CHANGELOG.md b/CHANGELOG.md index 28748c56..ba30b12a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,10 +27,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Remove `Serial::split`, which possibly creates two mutable references two one Serial instance, which could've caused UB. The use case of this function was hard to find out anyway. ([#351]) - was hard to find out anyway. - Remove `defmt-*` features (`defmt` feature is still available), to finalize - migration from `defmt-0.2.x` -> `defmt-0.3.x`. -- Removed implicit `stm32-usbd` feature (use `usb` instead) + migration from `defmt-0.2.x` -> `defmt-0.3.x`. ([#349]) +- Removed implicit `stm32-usbd` feature (use `usb` instead) ([#349]) ### Added diff --git a/Cargo.toml b/Cargo.toml index 84efa8db..49004bd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,9 +37,11 @@ embedded-dma = "0.2.0" embedded-hal = { version = "0.2.7", features = ["unproven"] } embedded-time = "0.12.1" enumset = { version = "1.1.3", optional = true } -nb = "1.0.0" +nb = "1.1.0" num-traits = { version = "0.2.17", default-features = false} paste = "1.0.14" +# Fix for minimal version build +proc-macro2 = "1.0.70" rtcc = { version = "0.3.0", optional = true } stm32-usbd = { version = "0.6.0", optional = true } stm32f3 = { version = "0.15.1", default-features = false }