ghee 0.6.1

That thin layer of data change management over the filesystem
Documentation
use std::{collections::BTreeMap, path::PathBuf};

use serde::{Deserialize, Serialize};

use crate::parser::key::Key;

#[derive(Serialize, Deserialize)]
pub struct IndexInfo {
    /// The indexed key and location of related indices
    pub related_indices: BTreeMap<Key, PathBuf>,
}

impl Default for IndexInfo {
    fn default() -> Self {
        IndexInfo {
            related_indices: BTreeMap::new(),
        }
    }
}