Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Xion/cargo-download

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cargo-download

crates.io Build Status

A cargo subcommand for downloading crates from crates.io

About

cargo-download can be used to download a gzipped archive of given crate, in the exact form that it was uploaded to crates.io.

This can be useful for a variety of things, such as:

  • checking in your dependencies in source control (if your team/organization follows this practice)
  • mirroring crates.io for reproducible CI/CD pipelines
  • security auditing of crates (esp. when a crate repository is missing)
  • reproducing a bug that only occurs in uploaded versions of your crate

Installation

cargo-download can be installed with cargo install:

$ cargo install cargo-download

This shall put the cargo-download executable in your Cargo binary directory (e.g. ~/.cargo/bin), which hopefully is in your $PATH.

Usage

To download the newest version of foo crate, do this:

$ cargo download foo >foo.gz

You can also use the standard Cargo.toml notation to specify a particular version:

$ cargo download foo==0.9 >foo-0.9.gz

For more detailed usage instructions, run cargo download --help.

License

cargo-download is licensed under the terms of the MIT license.

About

Cargo subcommand for downloading crates directly from crates.io

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages