mirror of
				https://github.com/Swatinem/rust-cache
				synced 2025-10-31 12:52:28 +00:00 
			
		
		
		
	
				
				No description
				
			
		| .github | ||
| dist | ||
| src | ||
| .gitignore | ||
| action.yml | ||
| CHANGELOG.md | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
Rust Cache Action
A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults.
Example usage
- uses: Swatinem/rust-cache@v1
Cache Details
The cache currently caches the following directories:
- ~/.cargo/registry/index
- ~/.cargo/registry/cache
- ./target
This cache is automatically keyed by:
- the github job,
- the rustc release / host / hash, and
- a hash of the Cargo.lock/Cargo.tomlfiles.
An additional input key can be provided if the builtin keys are not sufficient.
Before persisting, the cache is cleaned of intermediate artifacts and
anything that is not a workspace dependency.
In particular, no caching of workspace crates will be done. For
this reason, this action will automatically set CARGO_INCREMENTAL=0 to
disable incremental compilation.
TODO: The ~/.cargo/git/db database is not yet persisted, support will be
added at a later point.