git-repository 0.35.0

This crate is now named 'gix' and not available under this name anymore
Documentation
use crate::{
    config,
    config::tree::{keys, Key, Safe, Section},
};

impl Safe {
    /// The `safe.directory` key
    pub const DIRECTORY: keys::Any = keys::Any::new("directory", &config::Tree::SAFE);
}

impl Safe {
    /// Implements the directory filter to trust only global and system files, for use with `safe.directory`.
    pub fn directory_filter(meta: &git_config::file::Metadata) -> bool {
        let kind = meta.source.kind();
        kind == git_config::source::Kind::System || kind == git_config::source::Kind::Global
    }
}

impl Section for Safe {
    fn name(&self) -> &str {
        "safe"
    }

    fn keys(&self) -> &[&dyn Key] {
        &[&Self::DIRECTORY]
    }
}