Login
Remember
Register
Ask a Question
What is Cargo in Rust?
0
votes
asked
Dec 28, 2023
in
Rust
by
Robin
What is Cargo in Rust?
rust-cargo
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 28, 2023
by
Robin
It's a build system and package manager built for Rust users to manager projects in it. The Cargo system manages three things for users, building code, downloading the libraries, and rebuilding those libraries.
...