summaryrefslogtreecommitdiffstats
path: root/vendor/gix/src/config/cache/mod.rs
blob: 1904c5ea91e8b73678b3369b23102c88553d6a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use super::{Cache, Error};

mod incubate;
pub(crate) use incubate::StageOne;

mod init;

impl std::fmt::Debug for Cache {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Cache").finish_non_exhaustive()
    }
}

mod access;

pub(crate) mod util;

pub(crate) use util::interpolate_context;