chore: update rust-starter references #1
Annotations
5 errors and 2 warnings
|
no method named `thiserror_provide` found for reference `&std::boxed::Box<dyn std::error::Error + std::marker::Send + std::marker::Sync>` in the current scope:
utils/src/error.rs#L13
error[E0599]: no method named `thiserror_provide` found for reference `&std::boxed::Box<dyn std::error::Error + std::marker::Send + std::marker::Sync>` in the current scope
--> utils/src/error.rs:13:5
|
13 | source: Option<Box<dyn std::error::Error + Send + Sync>>,
| ^^^^^^ method not found in `&Box<dyn Error + Send + Sync>`
|
|
use of unstable library feature `error_generic_member_access`:
utils/src/error.rs#L8
error[E0658]: use of unstable library feature `error_generic_member_access`
--> utils/src/error.rs:8:10
|
8 | #[derive(Error, Debug)]
| ^^^^^
|
= note: see issue #99301 <https://github.com/rust-lang/rust/issues/99301> for more information
= note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
use of unstable library feature `error_generic_member_access`:
utils/src/error.rs#L8
error[E0658]: use of unstable library feature `error_generic_member_access`
--> utils/src/error.rs:8:10
|
8 | #[derive(Error, Debug)]
| ^^^^^
|
= note: see issue #99301 <https://github.com/rust-lang/rust/issues/99301> for more information
= note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
`#![feature]` may not be used on the stable release channel:
utils/src/lib.rs#L1
error[E0554]: `#![feature]` may not be used on the stable release channel
--> utils/src/lib.rs:1:34
|
1 | #![cfg_attr(feature = "nightly", feature(backtrace))]
| ^^^^^^^^^^^^^^^^^^
|
|
unresolved import `thiserror`:
utils/src/error.rs#L8
error[E0432]: unresolved import `thiserror`
--> utils/src/error.rs:8:10
|
8 | #[derive(Error, Debug)]
| ^^^^^ no `ThiserrorProvide` in `__private`
|
note: found an item that was configured out
--> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/src/lib.rs:295:29
|
295 | pub use crate::provide::ThiserrorProvide;
| ^^^^^^^^^^^^^^^^
note: the item is gated here
--> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/src/lib.rs:293:5
|
293 | #[cfg(error_generic_member_access)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
TOC Generator
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
the feature `backtrace` has been stable since 1.65.0 and no longer requires an attribute to enable:
utils/src/lib.rs#L1
warning: the feature `backtrace` has been stable since 1.65.0 and no longer requires an attribute to enable
--> utils/src/lib.rs:1:42
|
1 | #![cfg_attr(feature = "nightly", feature(backtrace))]
| ^^^^^^^^^
|
= note: `#[warn(stable_features)]` on by default
|