From: Carol (Nichols || Goulding) Date: Sat, 14 May 2016 14:17:43 +0000 (-0400) Subject: Remove section about converting a project to cargo X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~14^2~7^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=921a210b69da7a96d70b9760de47b1094b6b0987;p=cargo.git Remove section about converting a project to cargo Since most projects start with cargo these days. --- diff --git a/src/doc/guide.md b/src/doc/guide.md index f54f0dcf2..51c8fbca4 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -15,14 +15,6 @@ To accomplish this goal, Cargo does four things: * Invokes `rustc` or another build tool with the correct parameters to build your project. * Introduces conventions, making working with Rust projects easier. -# Converting to Cargo - -You can convert an existing Rust project to use Cargo. You’ll have to create a -`Cargo.toml` file with all of your dependencies, and move your source files and -test files into the places where Cargo expects them to be. See the [manifest -description](manifest.html) and the [Project Layout](#project-layout) section -below for more details. - # Creating A New Project To start a new project with Cargo, use `cargo new`: