Skip to main content

spawn_db/
pinfile.rs

1use serde::{Deserialize, Serialize};
2
3// The overall config, containing a map from filename → FileEntry.
4#[derive(Debug, Default, Deserialize, Serialize)]
5pub struct LockData {
6    // Reference to the pinned files.  Might be an xxhash for spawn's pinning
7    // system, or a specific git root object hash, etc.
8    pub pin: String,
9}