Skip to content

Commit 3784f47

Browse files
committed
Merge pull request 'update heapless dependency' (#248) from update-deps into main
Reviewed-on: https://egit.irs.uni-stuttgart.de/rust/sat-rs/pulls/248
2 parents 2e53ce1 + e1911f1 commit 3784f47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

satrs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ thiserror = { version = "2", default-features = false }
2626
hashbrown = { version = ">=0.14, <=0.15", optional = true }
2727
static_cell = { version = "2", optional = true }
2828
dyn-clone = { version = "1", optional = true }
29-
heapless = { version = "0.8", optional = true }
29+
heapless = { version = "0.9", optional = true }
3030
downcast-rs = { version = "2", default-features = false, optional = true }
3131
bus = { version = "2.2", optional = true }
3232
crossbeam-channel = { version = "0.5", default-features = false, optional = true }

satrs/src/pus/event_man.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub mod heapless_mod {
4646
// regular Event type again.
4747
#[derive(Default)]
4848
pub struct HeaplessPusMgmtBackendProvider<const N: usize, Provider: GenericEvent> {
49-
disabled: heapless::FnvIndexSet<LargestEventRaw, N>,
49+
disabled: heapless::index_set::FnvIndexSet<LargestEventRaw, N>,
5050
phantom: PhantomData<Provider>,
5151
}
5252

0 commit comments

Comments
 (0)