<@U054MQUPL> : one approach might be to replace: `...
# development
w
@rough-minister-58256 : one approach might be to replace:
Copy code
pub struct Snapshots {
  ..
  temp_dir: TempDir,
  next_temp_id: atomic::AtomicUsize,
}
with
Copy code
pub struct Snapshots {
  ..
  temp_generator: Mutex<(TempDir, usize)>
}