From f63773ed37b8e6fd5f97388ce9c105f94320a2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Vi=C3=B6l?= Date: Mon, 27 Nov 2023 08:15:15 +0100 Subject: [PATCH] Remove stm32-usbd feature --- .github/workflows/msrv.yml | 4 ++-- CHANGELOG.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index c7fd6e91..58b89797 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -19,7 +19,7 @@ jobs: with: toolchain: 1.59.0 target: thumbv7em-none-eabihf - - run: cargo check --features=stm32f303xc,stm32-usbd,rt,can,ld --lib + - run: cargo check --features=stm32f303xc,usb,rt,can,ld --lib check-min-deps: name: Check Minimal Dependency Versions @@ -35,5 +35,5 @@ jobs: toolchain: nightly target: thumbv7em-none-eabihf - run: cargo +nightly update -Z minimal-versions - - run: cargo check --features=stm32f303xc,stm32-usbd,rt,can,ld --lib --examples + - run: cargo check --features=stm32f303xc,usb,rt,can,ld --lib --examples diff --git a/CHANGELOG.md b/CHANGELOG.md index 99e515b6..be654f59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). 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) ### Added