Skip to content

build(deps): bump heapless from 0.7.16 to 0.8.0 #972

build(deps): bump heapless from 0.7.16 to 0.8.0

build(deps): bump heapless from 0.7.16 to 0.8.0 #972

Triggered via pull request November 13, 2023 09:16
@jordensjordens
synchronize #807
Status Success
Total duration 14s
Artifacts

labeler.yml

on: pull_request_target
labeler
2s
labeler
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
labeler
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/labeler@v3. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
a `const` item should never be interior mutable: src/net/data_stream.rs#L62
warning: a `const` item should never be interior mutable --> src/net/data_stream.rs:62:1 | 62 | const BLOCK: BoxBlock<Frame> = BoxBlock::new(); | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | make this a static item (maybe with lazy_static) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const = note: `#[warn(clippy::declare_interior_mutable_const)]` on by default
type `FRAME_POOL` should have an upper camel case name: src/net/data_stream.rs#L59
warning: type `FRAME_POOL` should have an upper camel case name --> src/net/data_stream.rs:59:11 | 59 | box_pool!(FRAME_POOL: Frame); | ^^^^^^^^^^ help: convert the identifier to upper camel case: `FramePool` | = note: `#[warn(non_camel_case_types)]` on by default