I want to create a library for rust. This is the Cargo.toml file for my project :
[package]
name = "binary_tree"
version = "0.0.1"
authors = ["Guillaume Bersac <[email protected]>"]
[lib]
test = true
plugin = false
This is the file of my repository :
Cargo.toml
README.md
src
|_node.rs
When I run the command "cargo run" or "cargo build" or "cargo test", I get the following error message :
Cargo.toml is not a valid manifest
expected a value of type
array
, but found a value of typetable
for the keylib
How to format my Cargo.toml so that it compile correctly ?