cargo local-registry
This is a Cargo subcommand to ease maintenance of local registries. Support for a local registry is being added in rust-lang/cargo#2361 and will be able to redirect all Cargo downloads/requests to a registry stored locally.
This support is often useful for "offline builds" by preparing the list of all Rust dependencies ahead of time and shipping them to a build machine in a pre-ordained format. A local registry is an index and a collection of tarballs, all of which currently originate from crates.io.
The purpose of this subcommand will be to manage these registries and allow adding/deleting packages with ease.
To install from source you can execute:
cargo install cargo-local-registry
Note that you'll need the build tools listed below for this to succeed. If you'd prefer to download precompiled binaries assembled on the CI for this repository, you may also use the GitHub releases
As part of the build process you will need [gcc], [openssl] and [cmake] in your
PATH
.
Afterwards you can build this repository via:
cargo build
And the resulting binary will be inside target/debug
One of the primary operations will be to create a local registry from a lock file itself. This can be done via
cargo local-registry --sync path/to/Cargo.lock path/to/registry
This command will:
path/to/registry
path/to/registry
to reflect all this informationcargo-local-registry
is primarily distributed under the terms of both the MIT
license and the Apache License (Version 2.0), with portions covered by various
BSD-like licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.