this post was submitted on 04 Oct 2024
10 points (72.7% liked)
Rust
6111 readers
12 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Cargo is Rust's build tool. It manages your project, invokes rustc to compile your code, and does a whole bunch of other stuff. When you add a dependency to Cargo.toml, cargo will download and build it the next time you run
cargo build
.You can use
cargo add
to add the dependency to Cargo.toml if you wish, but the result is the same as if you just edited the file yourself.The nice thing about it is that you can see all the direct dependencies for your project by inspecting the Cargo.toml file, and you can edit that file to add or remove dependencies as needed. (check out the cargo-tree command if you want to see all of your dependencies)
To answer your question, yes, most people use Cargo. ๐