cargo-new (1) Linux Manual Page
cargo-new – Create a new cargo package
Synopsis
cargo new [OPTIONS] <PATH>Description
Create a new cargo package at <PATH>. Use the –vcs option to control the version control system to use.
Options
- -h, –help
- Print this message.
- –vcs VCS
- Initialize a new repository for the given version control system (git or hg) or do not initialize any version control at all (none) overriding a global configuration.
- –bin
- Use a binary instead of a library template.
- –name NAME
- Set the resulting package name.
- -v, –verbose
- Use verbose output.
- -q, –quiet
- No output printed to stdout.
- –color WHEN
- Coloring: auto, always, never.
Examples
Create a binary cargo package in the current directory$
cargo new –bin ./
