Skip to content

Add flipperzero::furi::kernel module #291

Add flipperzero::furi::kernel module

Add flipperzero::furi::kernel module #291

Triggered via pull request October 21, 2024 03:51
Status Failure
Total duration 1m 9s
Artifacts

lints.yml

on: pull_request
crates  /  Clippy (MSRV)
25s
crates / Clippy (MSRV)
crates  /  Clippy (beta)
17s
crates / Clippy (beta)
crates  /  Intra-doc links
32s
crates / Intra-doc links
crates  /  Rustfmt
13s
crates / Rustfmt
tools  /  Clippy (MSRV)
29s
tools / Clippy (MSRV)
tools  /  Clippy (beta)
35s
tools / Clippy (beta)
tools  /  Intra-doc links
57s
tools / Intra-doc links
tools  /  Rustfmt
3s
tools / Rustfmt
Fit to window
Zoom out
Zoom in

Annotations

12 errors and 5 warnings
crates / Rustfmt
Process completed with exit code 1.
can't find crate for `core`: home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ufmt-write-0.1.0/src/lib.rs#L1
error[E0463]: can't find crate for `core` | = note: the `thumbv7em-none-eabihf` target may not be installed = help: consider downloading the target with `rustup target add thumbv7em-none-eabihf`
crates / Clippy (beta)
Received a internal compiler error OR an unknown message type, view this in debug mode to view the payload
crates / Clippy (beta)
{ "rendered": "For more information about this error, try `rustc --explain E0463`.\n", "$message_type": "diagnostic", "children": [], "code": null, "level": "failure-note", "message": "For more information about this error, try `rustc --explain E0463`.", "spans": [] }
file not found for module `kernel`: crates/flipperzero/src/lib.rs#L4
error[E0583]: file not found for module `kernel` --> flipperzero/src/furi/mod.rs:4:1 | 4 | pub mod kernel; | ^^^^^^^^^^^^^^^ | = help: to create the module `kernel`, create file "flipperzero/src/furi/kernel.rs" or "flipperzero/src/furi/kernel/mod.rs" = note: if there is a `mod kernel` elsewhere in the crate already, import it with `use crate::...` instead
cannot find function `get_tick_frequency` in module `furi::kernel`: crates/flipperzero/src/lib.rs#L20
error[E0425]: cannot find function `get_tick_frequency` in module `furi::kernel` --> flipperzero/src/furi/time.rs:20:30 | 20 | let rate = furi::kernel::get_tick_frequency(); | ^^^^^^^^^^^^^^^^^^ not found in `furi::kernel`
cannot find function `get_tick_frequency` in module `furi::kernel`: crates/flipperzero/src/lib.rs#L35
error[E0425]: cannot find function `get_tick_frequency` in module `furi::kernel` --> flipperzero/src/furi/time.rs:35:30 | 35 | let rate = furi::kernel::get_tick_frequency(); | ^^^^^^^^^^^^^^^^^^ not found in `furi::kernel`
cannot find function `get_tick` in module `furi::kernel`: crates/flipperzero/src/lib.rs#L53
error[E0425]: cannot find function `get_tick` in module `furi::kernel` --> flipperzero/src/furi/time.rs:53:31 | 53 | Instant(furi::kernel::get_tick()) | ^^^^^^^^ not found in `furi::kernel`
aborting due to 4 previous errors
error: aborting due to 4 previous errors
crates / Clippy (MSRV)
Received a internal compiler error OR an unknown message type, view this in debug mode to view the payload
crates / Clippy (MSRV)
{ "rendered": "Some errors have detailed explanations: E0425, E0583.\n", "$message_type": "diagnostic", "children": [], "code": null, "level": "failure-note", "message": "Some errors have detailed explanations: E0425, E0583.", "spans": [] }
crates / Intra-doc links
Process completed with exit code 101.
crates / Clippy (beta)
The `warn` input is deprecated in v1.4 and can be used within the `check-args` input
crates / Clippy (MSRV)
The `deny` input is deprecated in v1.4 and can be used within the `check-args` input
tools / Clippy (MSRV)
The `deny` input is deprecated in v1.4 and can be used within the `check-args` input
tools / Clippy (beta)
The `warn` input is deprecated in v1.4 and can be used within the `check-args` input
the following explicit lifetimes could be elided: 'data: tools/src/bin/fap-lld/main.rs#L84
warning: the following explicit lifetimes could be elided: 'data --> src/bin/fap-lld/fastrel.rs:84:6 | 84 | impl<'data> FastRel<'data> { | ^^^^^ ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 84 - impl<'data> FastRel<'data> { 84 + impl FastRel<'_> { |