Rust software source

Could you please advise me? I want to set up an internal Rust source. I want to download all Rust packages to the internal network. Is there any good way to do this, or does the official support it?

Post approved now after being held by spam protection.

Panamax let's you set up an offline mirror of crates.io and rustup, the official Rust installer:


If this concerns a single project's dependencies only, you can use cargo vendor to download the source code of the dependencies, which you can then copy to the internal network.


If you want to run your own registry, like crates.io, you can use something like margo. More projects are listed here:

5 Likes

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.