13 releases

0.2.6 Jul 17, 2023
0.2.3 Aug 6, 2022
0.2.2 Dec 2, 2021
0.2.1 Apr 26, 2020
0.1.0 Feb 13, 2016

#67 in Cargo plugins

Download history 364/week @ 2023-12-13 328/week @ 2023-12-20 384/week @ 2023-12-27 459/week @ 2024-01-03 333/week @ 2024-01-10 283/week @ 2024-01-17 250/week @ 2024-01-24 406/week @ 2024-01-31 263/week @ 2024-02-07 243/week @ 2024-02-14 266/week @ 2024-02-21 343/week @ 2024-02-28 329/week @ 2024-03-06 253/week @ 2024-03-13 137/week @ 2024-03-20 74/week @ 2024-03-27

851 downloads per month

MIT/Apache

35KB
328 lines

cargo local-registry

Build Status Build status

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.

Installation

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

Building

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

Usage

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:

  • Download all dependencies from the crates.io registry
  • Verify all checksums of what's downloaded
  • Place all downloads in path/to/registry
  • Prepare the index of path/to/registry to reflect all this information

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in cargo-local-registry by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~57–94MB
~1.5M SLoC