update heapless dependency

This commit is contained in:
Robin Mueller
2025-09-06 19:31:17 +02:00
parent d5ecefd683
commit 4cd251c7cb
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ thiserror = { version = "2", default-features = false }
hashbrown = { version = ">=0.14, <=0.15", optional = true } hashbrown = { version = ">=0.14, <=0.15", optional = true }
static_cell = { version = "2", optional = true } static_cell = { version = "2", optional = true }
dyn-clone = { version = "1", optional = true } dyn-clone = { version = "1", optional = true }
heapless = { version = "0.8", optional = true } heapless = { version = "0.9", optional = true }
downcast-rs = { version = "2", default-features = false, optional = true } downcast-rs = { version = "2", default-features = false, optional = true }
bus = { version = "2.2", optional = true } bus = { version = "2.2", optional = true }
crossbeam-channel = { version = "0.5", default-features = false, optional = true } crossbeam-channel = { version = "0.5", default-features = false, optional = true }

View File

@@ -46,7 +46,7 @@ pub mod heapless_mod {
// regular Event type again. // regular Event type again.
#[derive(Default)] #[derive(Default)]
pub struct HeaplessPusMgmtBackendProvider<const N: usize, Provider: GenericEvent> { pub struct HeaplessPusMgmtBackendProvider<const N: usize, Provider: GenericEvent> {
disabled: heapless::FnvIndexSet<LargestEventRaw, N>, disabled: heapless::index_set::FnvIndexSet<LargestEventRaw, N>,
phantom: PhantomData<Provider>, phantom: PhantomData<Provider>,
} }