cargo 0.34.0

Cargo, a package manager for Rust.
Documentation
*--bin*::
    Create a package with a binary target (`src/main.rs`).
    This is the default behavior.

*--lib*::
    Create a package with a library target (`src/lib.rs`).

*--edition* _EDITION_::
    Specify the Rust edition to use. Default is 2018.
    Possible values: 2015, 2018

*--name* _NAME_::
    Set the package name. Defaults to the directory name.

*--vcs* _VCS_::
    Initialize a new VCS repository for the given version control system (git,
    hg, pijul, or fossil) or do not initialize any version control at all
    (none). If not specified, defaults to `git` or the configuration value
    `cargo-new.vcs`, or `none` if already inside a VCS repository.

*--registry* _REGISTRY_::
    Alternative registry to use. This sets the `publish` field which will
    restrict publishing only to the given registry name.
+
This option is unstable and available only on the nightly channel and requires
the `-Z unstable-options` flag to enable.