Rust Analyzer无法加载工作区,由于依赖关系而失败


[ERROR rust_analyzer::reload] failed to switch workspaces: 
rust-analyzer failed to load workspace: 
Failed to read Cargo metadata from Cargo.toml file 
/home/supreetsingh/Documents/SavedPrograms/Rust/remind-me/Cargo.toml,
cargo 1.57.0-nightly (7fbbf4e8f 2021-10-19): Failed to run `cargo metadata --manifest-path
/home/supreetsingh/Documents/SavedPrograms/Rust/remind-me/Cargo.toml`: `cargo metadata` exited with an error: Updating crates.io index error: failed to select a version for the requirement `phf = "^0.11"` 
candidate versions found which didn't match: 0.10.1, 0.10.0, 0.9.0, ... location searched: crates.io index required by package `tokio-postgres v0.7.7` ... which satisfies dependency `tokio-postgres = "^0.7.7"` (locked to 0.7.7) of package `postgres v0.19.4` ... which satisfies dependency `postgres = "^0.19.4"` (locked to 0.19.4) of package `remind-me v0.1.0 (/home/supreetsingh/Documents/SavedPrograms/Rust/remind-me)

因此,这个问题只是在我的一个防锈工程中出现的。货物在路上,当我在项目中添加了一个新的依赖项时,这个问题就出现了,现在我陷入了困境。我试着在互联网上寻找答案,但没有成功,我不知道下一步还能做什么。

cargo metadata --manifest-path <path to the file>在控制台中工作我不知道为什么现在不工作。

我在Manjaro上运行这个,我的文本编辑器是Vim,YouCompleteMe用于自动完成。

如果有人能指出依赖关系的问题,我会非常感激。

谢谢。

phf 0.11需要Rust 1.60。您需要将Rust编译器至少更新到该版本,或者遵循依赖关系链并降级postgres机箱,这样您就不需要phf0.11。

相关内容

  • 没有找到相关文章

最新更新