Package Management with Cargo
Learn how to add dependencies to the project.
We'll cover the following...
Dependencies
Cargo can install dependencies for us. There’s an ever-growing number of crates (Rust’s name for packages) available for free on the crates.io system. Cargo makes it easy to install and use these crates and to publish our own.
We can search available crates by typing cargo search [search term]
or by visiting the crates website. For example, searching for bracket-terminal produces the following:
...