12
Do people use Cargo?
(lemmy.world)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
Maybe I am wrong or my understanding is oversimplified. But the way I understand it is that when you add a dependency to your cargo.toml file, when you run the build rust is going to cargo and downloading those dependencies you added for you and stores the dependencies with project files.
Then when you rebuild it is checking cargo to see if there is a later version and will update according to how you specified the version in the cargo.toml file.
So you are using cargo. it’s basically just automated, so you don’t have to manually interact with cargo the same way you do with pip.
You are confusing cargo and crates.io.
Cargo is the program doing all the downloading of dependencies, crates.io is the official registry (but there are ways to host your own for private crates, e.g. kellnr), Rust is just the compiler and does not do any downloading of anything. For completeness sake, rustup is the program you can use to install cargo, rust and some other tooling and data files.