[src/doc/book] Add all sub-chapters to cargo-in-depth.md

This commit is contained in:
Behnam Esfahbod 2017-08-31 01:07:35 -07:00
parent e6841b9188
commit afe693df2e
3 changed files with 12 additions and 1 deletions

View File

@ -3,6 +3,7 @@
* [Getting Started](getting-started.md)
* [Installation](01-01-installation.md)
* [First steps with Cargo](01-02-first-steps.md)
* [Guide](guide.md)
* [Why Cargo exists](02-01-why-cargo-exists.md)
* [Creating a new project](02-02-creating-a-new-project.md)
@ -12,6 +13,7 @@
* [Cargo.toml vs Cargo.lock](02-06-cargo-toml-vs-cargo-lock.md)
* [Tests](02-07-tests.md)
* [Continuous Integration](02-08-continuous-integration.md)
* [Cargo In Depth](cargo-in-depth.md)
* [Specifying Dependencies](03-01-specifying-dependencies.md)
* [Cargo.toml Format](03-02-manifest.md)
@ -23,4 +25,5 @@
* [Source Replacement](03-08-source-replacement.md)
* [External Tools](03-09-external-tools.md)
* [Policies](03-10-policies.md)
* [FAQ](faq.md)

View File

@ -2,3 +2,11 @@
* [Specifying Dependencies](03-01-specifying-dependencies.html)
* [Cargo.toml Format](03-02-manifest.html)
* [Configuration](03-03-config.html)
* [Environment Variables](03-04-environment-variables.html)
* [Build Scripts](03-05-build-scripts.html)
* [Publishing on crates.io](03-06-crates-io.html)
* [Package ID specs](03-07-pkgid-spec.html)
* [Source Replacement](03-08-source-replacement.html)
* [External Tools](03-09-external-tools.html)
* [Policies](03-10-policies.html)

View File

@ -1,4 +1,4 @@
## Getting started
## Getting Started
* [Installation](01-01-installation.html)
* [First steps with Cargo](01-02-first-steps.html)