book/2018-edition/src/ch14-00-more-about-cargo.md

16 lines
697 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# More About Cargo and Crates.io
So far weve 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, well 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 what we cover in this chapter, so for a full
explanation of all its features, see [its
documentation](https://doc.rust-lang.org/cargo/).