cargo-new (1) Linux Manual Page
NAME
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.
–vcsVCS- 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.
–nameNAME- Set the resulting package name.
-v, –verbose- Use verbose output.
-q, –quiet- No output printed to stdout.
–colorWHEN- Coloring: auto, always, never.
EXAMPLES
Create a binary cargo package in the current directory
-
$
cargo new --bin ./
SEE ALSO
cargo(1), cargo-init(1)
COPYRIGHT
This work is dual-licensed under Apache 2.0 and MIT terms. See COPYRIGHT file in the cargo source distribution.
