summaryrefslogtreecommitdiffstats
path: root/src/doc/book/src/ch14-00-more-about-cargo.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/book/src/ch14-00-more-about-cargo.md')
-rw-r--r--src/doc/book/src/ch14-00-more-about-cargo.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/doc/book/src/ch14-00-more-about-cargo.md b/src/doc/book/src/ch14-00-more-about-cargo.md
new file mode 100644
index 000000000..8f8b8e51c
--- /dev/null
+++ b/src/doc/book/src/ch14-00-more-about-cargo.md
@@ -0,0 +1,15 @@
+# More About Cargo and Crates.io
+
+So far we’ve used only the most basic features of Cargo to build, run, and test
+our code, but it can do a lot more. In this chapter, we’ll discuss some of its
+other, more advanced features to show you how to do the following:
+
+* Customize your build through release profiles
+* Publish libraries on [crates.io](https://crates.io/)<!-- ignore -->
+* Organize large projects with workspaces
+* Install binaries from [crates.io](https://crates.io/)<!-- ignore -->
+* Extend Cargo using custom commands
+
+Cargo can do even more than the functionality we cover in this chapter, so for
+a full explanation of all its features, see [its
+documentation](https://doc.rust-lang.org/cargo/).