Files
cheatsheet-tldr/tldr/cargo-new
2024-03-21 00:14:12 +00:00

15 lines
371 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# cargo new
> Create a new Cargo package.
> Equivalent of `cargo init`, but specifying a directory is required.
> More information: <https://doc.rust-lang.org/cargo/commands/cargo-new.html>.
- Create a new Rust project with a binary target:
`cargo new {{path/to/directory}}`