├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE-MIT ├── LICENSE_APACHE ├── README.md └── src ├── crates.rs ├── git.rs ├── index_sync.rs ├── main.rs ├── stats.html └── stats.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .cargo -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/LICENSE_APACHE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/README.md -------------------------------------------------------------------------------- /src/crates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/src/crates.rs -------------------------------------------------------------------------------- /src/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/src/git.rs -------------------------------------------------------------------------------- /src/index_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/src/index_sync.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/src/stats.html -------------------------------------------------------------------------------- /src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMacNaughton/cargo-cacher/HEAD/src/stats.rs --------------------------------------------------------------------------------