Hi, folks.
On the web-page Getting started - Rust Programming Language , in
the "Adding Dependencies" section, the reader is instructed to
include the following line in Cargo.toml :
[dependencies] ferris-says = "0.1"
This is incorrect, and will cause "cargo build" to fail
to parse Cargo.toml . Instead, these two lines should appear:
[dependencies]
ferris-says = "0.1"
(I am not sufficiently familiar with github to correct the
text of the web-page myself).
Cordially,
Rich