由于依赖关系,Ruust-Analyzer无法加载工作区

7y4bm7vi  于 2022-09-19  发布在  Linux
关注(0)|答案(1)|浏览(186)
[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)

所以这个问题只是在我的一个铁 rust 项目中出现的。货物在路上,当我在我的项目中添加了一个新的依赖项时,这个问题就出现了,现在我被这个卡住了。我试着在网上寻找答案,但还没有成功,我不知道下一步还能尝试什么。

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

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

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

谢谢。

yc0p9oo0

yc0p9oo01#

PHF 0.11需要铁 rust 1.60。您需要将Rust编译器至少更新到该版本,或者遵循依赖链并降级postgres机箱,以便不需要phf 0.11。

相关问题