

For more information on Rust, please see:
- Rust: The official website for Rust language
- Cargo: The official documentation for Cargo - the Rust package manager
- Crates Public Registry: The official Rust community’s crate registry
In the following examples:
Identifier | Description |
---|---|
OWNER | Your Cloudsmith account name or organisation name (namespace) |
REPOSITORY | Your Cloudsmith Repository name (also called "slug") |
VERSION | Alpine distribution version, i.e v3.8 |
TOKEN | Your Cloudsmith Entitlement Token (see Entitlements for more details) |
USERNAME | Your Cloudsmith username |
PASSWORD | Your Cloudsmith password |
API-KEY | Your Cloudsmith API Key |
REGISTRY_NAME | A name for the Cargo registry |
PACKAGE_NAME | The name of your package |
PACKAGE_VERSION | The version number of your package |
PROJECT_NAME | The name of your Rust project |
Upload a Package
Upload via Cargo Publish
Setup
A name and URL for the registry must be added to your .cargo/config
file as follows:
Public Repositories
[registries]
REGISTRY_NAME = { index = "https://dl.cloudsmith.io/public/OWNER/REPOSITORY/cargo/index.git" }
Private Repositories
Private Cloudsmith repositories require authentication. You can choose between two types of authentication, Entitlement Token Authentication or HTTP Basic Authentication.
The setup method will differ depending on what authentication type you choose to use.
[registries]
REGISTRY_NAME = { index = "https://dl.cloudsmith.io/TOKEN/OWNER/REPOSITORY/cargo/index.git" }
[registries]
REGISTRY_NAME = { index = "https://dl.cloudsmith.io/basic/OWNER/REPOSITORY/cargo/index.git" }
If using HTTP basic authentication, you'll need to configure Git with credentials. Git's standard authentication mechanisms are used by Cargo and can be configured in the normal way. For example, you could use git's per-user credential store as follows:
git config --global credential.helper store
echo "https://USERNAME:[email protected]" > ~/.git-credentials
git config --global credential.helper store
echo "https://USERNAME:[email protected]" > ~/.git-credentials
git config --global credential.helper store
echo "https://token:[email protected]" > ~/.git-credentials
For further details or other configuration options, see the Official Git Documentation.
In order to authenticate for publishing via cargo, you can either enter your credentials using the command:
cargo login --registry REGISTRY_NAME
Or, add your credentials to your .cargo/credentials
file:
[registries.REGISTRY-NAME]
token = API-KEY
Publish
To publish a crate, you can do so from your project directory using cargo publish as follows:
cargo publish --registry REGISTRY_NAME
If you haven't specified credentials using one of the methods above, you'll be asked to provide them using cargo login
.
You can also set the following environment variables:
CARGO_REGISTRIES_<REGISTRY-NAME>_INDEX
- instead of setting the registry URL in ~/.cargo/config
CARGO_REGISTRIES_<REGISTRY-NAME>_TOKEN
- instead of providing credentials via cargo login
or writing them to ~/.cargo/credentials
:
Upload via the Cloudsmith CLI
For full details of how to install and setup the Cloudsmith CLI, see Command Line Interface.
The command to upload an Alpine package via the Cloudsmith CLI is:
cloudsmith push cargo OWNER/REPOSITORY PACKAGE_NAME.crate
Example:
cloudsmith push cargo org/repo your-package.crate
Upload via Cloudsmith Website
Please see Upload a Package for details of how to upload via the Website UI.
Download / Install a Package
Once you have configured a registry as per the Upload via Cargo Publish setup instructions, a crate can then depend on a crate from your registry by specifying the registry key and a value of the registry's name in that dependency's entry in Cargo.toml
:
[package]
name = "PROJECT_NAME"
version = "0.1.0"
[dependencies]
PACKAGE_NAME = { version = "PACKAGE_VERSION", registry = "REGISTRY_NAME" }
You can also install a crate directly by specifying the registry on the command line:
cargo install PACKAGE_NAME --registry REGISTRY_NAME`
Upstream Proxying / Caching
Not Supported
Key Signing Support
Not Supported by Format
Troubleshooting
Please see the Troubleshooting page for further help and information.
Updated 5 months ago