error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
--> tests/test_expr.rs:105:14
|
104 | #[derive(Error, Debug)]
| ----- in this derive macro expansion
105 | #[error("{A} {b}", b = &0 as &dyn Trait<i32, A = i32>)]
| ^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
|
= help: the trait `std::fmt::Display` is not implemented for `PathBuf`
= note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
= note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
= note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
With 1.61:
error: package `indexmap v2.6.0` cannot be built because it requires
rustc 1.63 or newer, while the currently active rustc version is 1.61.0
With 1.63:
error: package `toml_datetime v0.6.8` cannot be built because it requires
rustc 1.65 or newer, while the currently active rustc version is 1.63.0
With 1.65:
error: package `trybuild v1.0.101` cannot be built because it requires
rustc 1.70 or newer, while the currently active rustc version is 1.65.0
Either upgrade to rustc 1.70 or newer, or use
cargo update -p trybuild@1.0.101 --precise ver
where `ver` is the latest version of `trybuild` supporting rustc 1.65.0
warning: variables can be used directly in the `format!` string
--> build.rs:140:9
|
140 | / eprintln!(
141 | | "Environment variable ${} is not set during execution of build script",
142 | | key,
143 | | );
| |_________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic`
= help: to override `-W clippy::pedantic` add `#[allow(clippy::uninlined_format_args)]`
warning: this lifetime isn't used in the impl
--> src/aserror.rs:46:6
|
46 | impl<'a, T: Error + 'a> Sealed for T {}
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
= note: `-W clippy::extra-unused-lifetimes` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::extra_unused_lifetimes)]`
warning: the following explicit lifetimes could be elided: 'a
--> tests/test_display.rs:152:14
|
152 | impl<'a> Display for Msg<'a> {
| ^^ ^^
|
= 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
|
152 - impl<'a> Display for Msg<'a> {
152 + impl Display for Msg<'_> {
|