8 lines
218 B
Rust
8 lines
218 B
Rust
/// Cache blobs computed/validated by deps.
|
|
/// The pipeline may decide when to store, but deps executes IO and cache validity.
|
|
#[derive(Debug, Clone)]
|
|
pub struct CacheBlobs {
|
|
// placeholder
|
|
pub _unused: (),
|
|
}
|