this post was submitted on 04 Oct 2024
10 points (72.7% liked)
Rust
6111 readers
14 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
There is a command now to add a dependency "cargo add"
But it does the same thing as adding it in Cargo.toml.
In contrary to python, cargo dependencies can have supplementary parameters in addition to the version number, such as features. That's why we didn't have "cargo add" at first.
But other than that, cargo is used for everything else: compiling, building doc, compile-time checks, formatting, code optimizations...