In the latest version of rust-analyzer (on nvim+coc, but a coworker is reporting the same thing on VSCode), I'm getting the following error from rust-analyzer.

[rust-analyzer] [E] unresolved import
This happens even though a regular build of the project finishes just fine.
thiserror::Error is a derive macro without an accompanying trait (c.f. serde::Serialize, which is a derive macro and also a trait, which does not cause an error).
Could there be a regression with importing derive macro traits?
In the latest version of rust-analyzer (on nvim+coc, but a coworker is reporting the same thing on VSCode), I'm getting the following error from rust-analyzer.
[rust-analyzer] [E] unresolved importThis happens even though a regular build of the project finishes just fine.
thiserror::Erroris a derive macro without an accompanying trait (c.f.serde::Serialize, which is a derive macro and also a trait, which does not cause an error).Could there be a regression with importing derive macro traits?