chore: update nightly to 2024-01-20 #1319
ci.yml
on: pull_request
changed_paths
6s
cargo check (host)
3m 36s
rustfmt
13s
clippy
2m 50s
cargo test (host)
4m 52s
build boot image (x86_64)
3m 5s
cargo test (cross x64)
4m 26s
docs
1m 56s
Loom tests (cordyceps)
1m 33s
Miri tests (codyceps)
2m 10s
Tests (maitake, no-default-features)
1m 42s
Loom tests (maitake)
4m 18s
Loom tests (mycelium-util)
1m 1s
Annotations
5 errors and 4 warnings
docs:
trace/src/writer.rs#L135
error: redundant explicit link target
--> trace/src/writer.rs:135:41
|
135 | /// [`MakeWriter::make_writer_for`][mwf] method will check the predicate to
| ----------------------------- ^^^ explicit target is redundant
| |
| because label contains path that resolves to same destination
|
note: referenced explicit link target defined here
--> trace/src/writer.rs:147:16
|
147 | /// [mwf]: MakeWriter::make_writer_for
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: when a link's destination is not specified,
the label is used to resolve intra-doc links
= note: `-D rustdoc::redundant-explicit-links` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(rustdoc::redundant_explicit_links)]`
help: remove explicit link target
|
135 | /// [`MakeWriter::make_writer_for`] method will check the predicate to
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
docs:
trace/src/writer.rs#L135
error: redundant explicit link target
--> trace/src/writer.rs:135:41
|
135 | /// [`MakeWriter::make_writer_for`][mwf] method will check the predicate to
| ----------------------------- ^^^ explicit target is redundant
| |
| because label contains path that resolves to same destination
|
note: referenced explicit link target defined here
--> trace/src/writer.rs:147:16
|
147 | /// [mwf]: MakeWriter::make_writer_for
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: when a link's destination is not specified,
the label is used to resolve intra-doc links
= note: `-D rustdoc::redundant-explicit-links` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(rustdoc::redundant_explicit_links)]`
help: remove explicit link target
|
135 | /// [`MakeWriter::make_writer_for`] method will check the predicate to
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
docs:
trace/src/writer.rs#L245
error: redundant explicit link target
--> trace/src/writer.rs:245:69
|
245 | /// A [writer] that is one of two types implementing [`fmt::Write`][writer].
| ------------ ^^^^^^ explicit target is redundant
| |
| because label contains path that resolves to same destination
|
note: referenced explicit link target defined here
--> trace/src/writer.rs:250:15
|
250 | /// [writer]: mycelium_util::fmt::Write
| ^^^^^^^^^^^^^^^^^^^^^^^^^
= note: when a link's destination is not specified,
the label is used to resolve intra-doc links
help: remove explicit link target
|
245 | /// A [writer] that is one of two types implementing [`fmt::Write`].
| ~~~~~~~~~~~~~~
|
docs:
trace/src/writer.rs#L245
error: redundant explicit link target
--> trace/src/writer.rs:245:69
|
245 | /// A [writer] that is one of two types implementing [`fmt::Write`][writer].
| ------------ ^^^^^^ explicit target is redundant
| |
| because label contains path that resolves to same destination
|
note: referenced explicit link target defined here
--> trace/src/writer.rs:250:15
|
250 | /// [writer]: mycelium_util::fmt::Write
| ^^^^^^^^^^^^^^^^^^^^^^^^^
= note: when a link's destination is not specified,
the label is used to resolve intra-doc links
help: remove explicit link target
|
245 | /// A [writer] that is one of two types implementing [`fmt::Write`].
| ~~~~~~~~~~~~~~
|
docs
Process completed with exit code 1.
|
clippy:
inoculate/src/lib.rs#L304
warning: `&` without an explicit lifetime name cannot be used here
--> inoculate/src/lib.rs:304:22
|
304 | const ARG_GROUP: &str = "boot-opts";
| ^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #115010 <https://github.com/rust-lang/rust/issues/115010>
= note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
|
304 | const ARG_GROUP: &'static str = "boot-opts";
| +++++++
|
cargo check (host):
inoculate/src/lib.rs#L304
warning: `&` without an explicit lifetime name cannot be used here
--> inoculate/src/lib.rs:304:22
|
304 | const ARG_GROUP: &str = "boot-opts";
| ^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #115010 <https://github.com/rust-lang/rust/issues/115010>
= note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
|
304 | const ARG_GROUP: &'static str = "boot-opts";
| +++++++
|
cargo check (host):
trace/src/embedded_graphics.rs#L132
warning: unused variable: `actual_point`
--> trace/src/embedded_graphics.rs:132:17
|
132 | Err(actual_point) => unsafe {
| ^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_actual_point`
|
= note: `#[warn(unused_variables)]` on by default
|
cargo check (host):
inoculate/src/lib.rs#L304
warning: `&` without an explicit lifetime name cannot be used here
--> inoculate/src/lib.rs:304:22
|
304 | const ARG_GROUP: &str = "boot-opts";
| ^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #115010 <https://github.com/rust-lang/rust/issues/115010>
= note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
|
304 | const ARG_GROUP: &'static str = "boot-opts";
| +++++++
|