错误:无法解析由以下原因引起的清单:找不到`package`部分

时间:2017-11-25 14:04:50

标签: rust rust-cargo

我已安装Microsoft的 C ++ 2015工具,如安装部分所述。

我收到此错误:

C:\Users\Mg Sein\Desktop\rust\hello_world>cargo build
error: failed to parse manifest at `C:\Users\Mg Sein\Desktop\rust\Cargo.toml`

Caused by:
  no `package` section found.

这是项目文件的目录:

directory of project file

我添加了cargo的路径变量:

add path variable for cargo

这是Cargo.toml的内容:

[package]
name = "hello_world"
version = "0.1.0"
authors = ["Mg Sein"]
[dependencies]

1 个答案:

答案 0 :(得分:-1)

我直接在Rust项目文件夹中从cargo.toml更改为Cargo.toml,并直接在Rust项目文件夹中将hello.rs更改为main.rs

从此,

before renaming file

到此,

after renaming file