Files
docs-rust/ch14/ch14-00-more-about-cargo.html
2026-06-22 21:27:36 +05:30

23 lines
1.0 KiB
HTML
Raw Permalink 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.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>More about Cargo and Crates.io</title>
</head>
<body>
<h1 id="more-about-cargo-and-cratesio"><a class="header" href="#more-about-cargo-and-cratesio">More About Cargo and Crates.io</a></h1>
<p>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:</p>
<ul>
<li>Customize your build through release profiles.</li>
<li>Publish libraries on <a href="https://crates.io/">crates.io</a><!-- ignore -->.</li>
<li>Organize large projects with workspaces.</li>
<li>Install binaries from <a href="https://crates.io/">crates.io</a><!-- ignore -->.</li>
<li>Extend Cargo using custom commands.</li>
</ul>
<p>Cargo can do even more than the functionality we cover in this chapter, so for
a full explanation of all its features, see <a href="https://doc.rust-lang.org/cargo/">its documentation</a>.</p>
</body>
</html>