Login
Remember
Register
Ask a Question
What is “cargo new” purposed for?
0
votes
asked
Dec 28, 2023
in
Rust
by
Robin
What is “cargo new” purposed for?
cargonew
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 28, 2023
by
Robin
The cargo new command is used to create a new project in Rust. Rust users can use below syntax create a sample project using Cargo.
$ cargo new project_name –bin
...