From 23ce51969f33aee3d36c8bb39c67d807cb921378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Vi=C3=B6l?= Date: Tue, 28 Nov 2023 09:40:00 +0100 Subject: [PATCH] update dependecies --- .github/workflows/msrv.yml | 1 + CHANGELOG.md | 5 ++--- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index 94e2b4e8..c175a610 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -19,6 +19,7 @@ jobs: with: toolchain: 1.60.0 target: thumbv7em-none-eabihf + - run: cargo tree - run: cargo check --features=stm32f303xc,usb,rt,can,ld --lib check-min-deps: 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..ca03fc65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ 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" rtcc = { version = "0.3.0", optional = true }