Skip to content

Latest commit

 

History

History
121 lines (79 loc) · 2.73 KB

cargo-publish.md

File metadata and controls

121 lines (79 loc) · 2.73 KB

cargo-publish(1)

{{*set command="publish"}} {{*set actionverb="Publish"}} {{~*set multitarget=true}}

NAME

cargo-publish --- Upload a package to the registry

SYNOPSIS

cargo publish [options]

DESCRIPTION

This command will create a distributable, compressed .crate file with the source code of the package in the current directory and upload it to a registry. The default registry is https://crates.io. This performs the following steps:

  1. Performs a few checks, including:
    • Checks the package.publish key in the manifest for restrictions on which registries you are allowed to publish to.
  2. Create a .crate file by following the steps in {{man "cargo-package" 1}}.
  3. Upload the crate to the registry. The server will perform additional checks on the crate.
  4. The client will poll waiting for the package to appear in the index, and may timeout. In that case, you will need to check for completion manually. This timeout does not affect the upload.

This command requires you to be authenticated with either the --token option or using {{man "cargo-login" 1}}.

See the reference for more details about packaging and publishing.

OPTIONS

Publish Options

{{#options}}

{{#option "--dry-run" }} Perform all checks without uploading. {{/option}}

{{> options-token }}

{{#option "--no-verify" }} Don't verify the contents by building them. {{/option}}

{{#option "--allow-dirty" }} Allow working directories with uncommitted VCS changes to be packaged. {{/option}}

{{> options-index }}

{{#option "--registry registry"}} Name of the registry to publish to. Registry names are defined in Cargo config files. If not specified, and there is a package.publish field in Cargo.toml with a single registry, then it will publish to that registry. Otherwise it will use the default registry, which is defined by the registry.default config key which defaults to crates-io. {{/option}}

{{/options}}

{{> section-options-package }}

Compilation Options

{{#options}}

{{> options-target-triple }}

{{> options-target-dir }}

{{/options}}

{{> section-features }}

Manifest Options

{{#options}}

{{> options-manifest-path }}

{{> options-locked }}

{{/options}}

Miscellaneous Options

{{#options}} {{> options-jobs }} {{> options-keep-going }} {{/options}}

Display Options

{{#options}} {{> options-display }} {{/options}}

{{> section-options-common }}

{{> section-environment }}

{{> section-exit-status }}

EXAMPLES

  1. Publish the current package:

    cargo publish
    

SEE ALSO

{{man "cargo" 1}}, {{man "cargo-package" 1}}, {{man "cargo-login" 1}}