Crates.io caching mirror

Build Status

Crates-Mirror is a simple tool to provide a caching mirror for crates.io. It's serving a local index which is synced with a remote index. All requested crates are downloaded and cached localy for further usage.

Installing

You can install it using cargo install crates-mirror

Usage

Local

Stores the index localy on the filesystem. ```toml basepath = "/path/to/store/crates" listenon = "localhost:3000" remoteapi = "https://crates.io" pollintervall = 300 # seconds

[registryconfig] upstreamurl = "https://github.com/rust-lang/crates.io-index" ```

Remote Index

Stores the index in a remote git repositority. ```toml basepath = "/tmp/cratesmirror" listenon = "localhost:3000" remoteapi = "https://crates.io" poll_intervall = 300 # seconds

[registryconfig] upstreamurl = "https://github.com/rust-lang/crates.io-index"

[registry_config.origin] url = "git@own.host/whatever" username = "weiznich" #optional, could also use ssh-key password = "xxxxx" #optional, could also use ssh-key ```

Reading Material

License

Licensed under either of

at your option.