1. 检查 rust-analyzer 的安装和配置 确保你已经正确安装了 rust-analyzer。如果你是在 Visual Studio Code 或其他支持 rust-analyzer 的编辑器中工作,请检查扩展或插件是否已安装并启用。 查看你的编辑器或IDE的配置,确保 rust-analyzer 被配置为 Rust 项目的默认语言服务器。2...
如图 安装插件后就出现这个标识 解决办法 找了许多教程,我整理一下成功的经验 打开设置 搜索rust,打开setting.json 3.输入Cargo.toml的绝对路径,保存Ctrl+s就行了 不过注意地址的斜杠,还有地址要用双引号。
("cargo analyze <path-to-root-directory>");println!("");ifletOk(workspace_path)=cargo_generator.workspace_path::get(){println!("Rust workspace discovered at {}",workspace_path);}else{println!("Failed to discover workspace");}} 四、结论 本文介绍了如何解决 Rust Analyzer 无法发现 workspace ...
rust-analyzer failed to discover workspace可能是一个令人头疼的问题,但通过检查工作空间配置、语言服务器设置、项目结构并确保使用最新版本的rust-analyzer,您应该能够解决这个问题。希望本文提供的信息能帮助您顺利解决此问题。
Rust analyzer recently started to give me the error dialog "rust-analyzer failed to discover workspace" for non-rust projects on macOS. I have the Visual Studio Code rust-analyzer extension installed because I like rust. But rust is not ...
其实很简单,出现这个问题,不用理Analyzer的问题,只要解决阻塞就可以了,原因是Cargo源不可用,需要更换到国内源,这个方法网上比较多,但有几个写的好象不是很对,只要国内源问题解决了,阻塞解决了,Analyzer就会自行解决。 // 顺便贴一下,在cargo目录下增加config的内容,我注释一下给小白 #下面的要打开,把注释符去掉,...
VSCode shows old rust-lang extensions is deprecated. Pushes everyone towards this one. When this one is installed you get errors about "failed to discover workspace" and click through (to def) doesn't work. I suspect this is due to wrong...
2.1、安装rust-analyzer后,直接创建main.rs文件,会提示 “rust-analyzer failed to discover workspace” 、输入函数时无智能提示 因为rust-analyzer 不能识别只有单个文件"main.rs"的文件夹为rust项目,必须通过cargo 创建初始化项目。 cargo new study1
给它源码和编译器报的错误,它给了更清晰的解释并帮忙修复了 问了一个rust-analyzer failed to discover workspace这样的问题,ChatGPT给与了详细的解决办法 后面甚至让 ChatGPT 帮忙写了一个完整的命令行程序!建议看原文查看详情。 ReadMore: https://simonwillison.net/2022/Dec/5/rust-chatgpt-copilot/ ...
rust-analyzer failed to discover workspace 我知道造成这个问题的原因是我在VSCode中将Tauri项目作为我的工作区加载,它的项目根中没有Cargo.toml,而是在与锈蚀相关的子目录src-tauri中。有什么方法可以告诉插件,它应该引用这个子目录src-tau 浏览16提问于2022-11-16得票数 0 回答已采纳 1回答 如何解决使用vscode时...