kconfig-linux 0.1.1

WIP crate for the KConfig DSL in the Linux kernel
Documentation
use crate::structure::atoms::KconfigDependency;

#[derive(Debug, Clone)]
pub struct KconfigDependenciesProperty {
    pub dependencies: Vec<KconfigDependency>,
}

impl KconfigDependenciesProperty {
    pub(crate) fn new_empty() -> Self {
        Self {
            dependencies: vec![],
        }
    }

    pub fn add_dependency(
        &mut self,
        dep: KconfigDependency,
    ) {
        self.dependencies.push(dep);
    }
}