rspack_storage 0.7.11

rspack cache storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use rspack_paths::Utf8PathBuf;

#[derive(Debug)]
pub struct PackOptions {
  pub bucket_size: usize,
  pub pack_size: usize,
}

#[derive(Debug)]
pub struct RootOptions {
  pub root: Utf8PathBuf,
  pub expire: u64,
  pub clean: bool,
}