Stage 10.15: Cargo.toml File
The Cargo.toml file is the central configuration file when you decide to use
cargo.
It's automatically created with cargo new / init.
In the Cargo.toml file you can define:
- package information like name, version, author or edition
- target information
- dependencies
- workspaces
- profiles
- features
Besides the Cargo.toml there will be a Cargo.lock file which consists of a table of your dependencies with concret version
Further information: