我想为 rust 创建一个库。这是我的项目的 Cargo.toml 文件:
[package]
name = "binary_tree"
version = "0.0.1"
authors = ["Guillaume Bersac <bersac_1@hotmail.fr>"]
[lib]
test = true
plugin = false
这是我的存储库的文件:
Cargo.toml
README.md
src
|_node.rs
当我运行命令“cargo run”或“cargo build”或“cargo test”时,我收到以下错误消息:
Cargo.toml 不是有效的清单
期望一个 type 的值
array
,但找到一个table
key的 type 值lib
如何格式化我的 Cargo.toml 以便正确编译?