求助,我使用SpaceVim去编写一个Rust的项目,项目非常简单我就是引用了一个三方的库 structopt
但是当我使用 l r 去运行 main.rs
时报了如下的错误:
extern crate structopt;
fn main() {
println!("Hello SVIM");
}
报错如下:
error[E0463]: can't find crate for structopt
我在 Cargo.toml
中引入了依赖:
[dependencies]
structopt = "0.3"
另一种形式的也试过
[dependencies]
structopt = {git = "https://github.com/TeXitoi/structopt.git"}
都无法解决这个问题
但是整个项目使用 cargo run
就是好的,为什么使用 SpaceVim 中插件的快捷键不行呢? l r
1
共 1 条评论, 1 页
评论区
写评论SpaceVim 运行的快捷键是
<空格> + l + r