我在http://doc.rust-lang.org/book/hello-cargo.html的 Rust 页面上关注了 Rust 书/教程,并在执行 Cargo 部分时收到以下错误。命令是cargo build --verbose
。由于构建过程失败,我使用了详细标志。看起来 Cargo 正在尝试构建一个名为“verbose”的文件。我确实使用了详细标志;几乎就像发送给 rustc 的参数缺少--
前缀一样?
Process didn't exit successfully: `rustc -v verbose` (status=101)
--- stderr
error: couldn't read verbose: IoError { kind: FileNotFound, desc: "couldn\'t ope
n path as file", detail: Some("file not found (OS Error 2: The system cannot fin
d the file specified.\r\n); path=verbose; mode=open; access=read") }
Cargo.toml 文件包含以下文本:
[package]
name = "hello_world" version = "0.0.1"
authors = [ "Your name <you@example.com>" ]
[[bin]]
name = "hello_world"
我正在运行的计算机是 Windows 7 64 位,使用 2 天前 2015 年 1 月 18 日的 64 位夜间安装。